Chromium Code Reviews| Index: tools/test.dart |
| diff --git a/tools/test.dart b/tools/test.dart |
| index 48397d84eb73f46cd12d476bba464b1ab4f9785d..f1c6200c7d2908e80001719db88db1fa0a83e25e 100755 |
| --- a/tools/test.dart |
| +++ b/tools/test.dart |
| @@ -33,7 +33,6 @@ |
| #import("../compiler/tests/dartc/test_config.dart"); |
| #import("../frog/tests/await/test_config.dart"); |
| #import("../runtime/tests/vm/test_config.dart"); |
| -#import("../samples/tests/samples/test_config.dart"); |
| #import("../tests/co19/test_config.dart"); |
| #import("../tests/standalone/test_config.dart"); |
| @@ -49,6 +48,7 @@ final TEST_SUITE_DIRECTORIES = const [ |
| 'frog/tests/frog_native', |
| 'frog/tests/leg', |
| 'frog/tests/leg_only', |
| + 'samples/tests/samples', |
|
Bob Nystrom
2012/04/30 16:18:52
Not for this patch, but I wonder if we should even
Siggi Cherem (dart-lang)
2012/04/30 16:33:02
yes - or samples/tests/
|
| 'tests/benchmark_smoke', |
| 'tests/corelib', |
| 'tests/dom', |
| @@ -100,9 +100,7 @@ main() { |
| var conf = configurationIterator.next(); |
| for (String key in selectors.getKeys()) { |
| - if (key == 'samples') { |
| - queue.addTestSuite(new SamplesTestSuite(conf)); |
| - } else if (key == 'standalone') { |
| + if (key == 'standalone') { |
| queue.addTestSuite(new StandaloneTestSuite(conf)); |
| } else if (key == 'co19') { |
| queue.addTestSuite(new Co19TestSuite(conf)); |