Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(112)

Unified Diff: tools/test.dart

Issue 10253022: test rename overhaul: step 13 - samples (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « samples/tests/samples/total/total_test_lib.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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));
« no previous file with comments | « samples/tests/samples/total/total_test_lib.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698