mirror of
https://github.com/dart-lang/sdk
synced 2024-11-02 10:28:02 +00:00
vmbot: fix vm bot config
Review URL: https://chromiumcodereview.appspot.com//9414014 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@4329 260f80e4-7a28-3924-810f-c04153c831b5
This commit is contained in:
parent
427d5e5ead
commit
3606f4c98e
5 changed files with 1 additions and 11 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -50,7 +50,6 @@ third_party/gsutil/*/gsutilc
|
|||
/compiler/eclipse.workspace/rhino/output/
|
||||
/compiler/eclipse.workspace/tests/output/
|
||||
/corelib/tests/corelib/src/generated/
|
||||
/corelib/tests/stub-generator/src/generated/
|
||||
|
||||
# Fling generated files
|
||||
/client/fling/.classpath
|
||||
|
|
|
@ -15,7 +15,6 @@ void main() {
|
|||
TestReadStatusFile("tests/isolate/isolate.status");
|
||||
TestReadStatusFile("tests/language/language.status");
|
||||
TestReadStatusFile("tests/standalone/standalone.status");
|
||||
TestReadStatusFile("tests/stub-generator/stub-generator.status");
|
||||
TestReadStatusFile("samples/tests/samples/samples.status");
|
||||
TestReadStatusFile("runtime/tests/vm/vm.status");
|
||||
TestReadStatusFile("frog/tests/frog/frog.status");
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
#import("../tests/isolate/test_config.dart");
|
||||
#import("../tests/language/test_config.dart");
|
||||
#import("../tests/standalone/test_config.dart");
|
||||
#import("../tests/stub-generator/test_config.dart");
|
||||
#import("../tests/utils/test_config.dart");
|
||||
#import("../runtime/tests/vm/test_config.dart");
|
||||
#import("../samples/tests/samples/test_config.dart");
|
||||
|
@ -63,9 +62,6 @@ main() {
|
|||
if (selectors.containsKey('isolate')) {
|
||||
queue.addTestSuite(new IsolateTestSuite(conf));
|
||||
}
|
||||
if (selectors.containsKey('stub-generator')) {
|
||||
queue.addTestSuite(new StubGeneratorTestSuite(conf));
|
||||
}
|
||||
if (selectors.containsKey('utils')) {
|
||||
queue.addTestSuite(new UtilsTestSuite(conf));
|
||||
}
|
||||
|
|
|
@ -18,7 +18,6 @@
|
|||
#import("../tests/isolate/test_config.dart");
|
||||
#import("../tests/language/test_config.dart");
|
||||
#import("../tests/standalone/test_config.dart");
|
||||
#import("../tests/stub-generator/test_config.dart");
|
||||
#import("../tests/utils/test_config.dart");
|
||||
#import("../runtime/tests/vm/test_config.dart");
|
||||
|
||||
|
@ -60,9 +59,6 @@ main() {
|
|||
if (selectors.containsKey('isolate')) {
|
||||
queue.addTestSuite(new IsolateTestSuite(conf));
|
||||
}
|
||||
if (selectors.containsKey('stub-generator')) {
|
||||
queue.addTestSuite(new StubGeneratorTestSuite(conf));
|
||||
}
|
||||
if (selectors.containsKey('utils')) {
|
||||
queue.addTestSuite(new UtilsTestSuite(conf));
|
||||
}
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
List<String> defaultTestSelectors =
|
||||
const ['dartc', 'samples', 'standalone', 'corelib', 'co19', 'language',
|
||||
'isolate', 'stub-generator', 'vm', 'client', 'dartdoc', 'utils'];
|
||||
'isolate', 'vm', 'client', 'dartdoc', 'utils'];
|
||||
|
||||
/**
|
||||
* Specification of a single test option.
|
||||
|
|
Loading…
Reference in a new issue