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

Unified Diff: tools/test.dart

Issue 10271014: test rename overhaul: step 14 - vm tests (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 | « runtime/tests/vm/vm_dart.status ('k') | tools/test-runtime.dart » ('j') | 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 3fd01924331754937aedcbfeb1a05b7ea310132f..aee9f2ff2f6433d217db5c3cd65b222df2335352 100755
--- a/tools/test.dart
+++ b/tools/test.dart
@@ -47,6 +47,7 @@ final TEST_SUITE_DIRECTORIES = const [
'frog/tests/frog_native',
'frog/tests/leg',
'frog/tests/leg_only',
+ 'runtime/tests/vm',
'samples/tests/samples',
'tests/benchmark_smoke',
'tests/corelib',
@@ -104,8 +105,9 @@ main() {
if (key == 'co19') {
queue.addTestSuite(new Co19TestSuite(conf));
} else if (conf['runtime'] == 'vm' && key == 'vm') {
+ // vm tests contain both cc tests (added here) and dart tests (added in
+ // [TEST_SUITE_DIRECTORIES]).
queue.addTestSuite(new VMTestSuite(conf));
- queue.addTestSuite(new VMDartTestSuite(conf));
} else if (conf['compiler'] == 'dartc' && key == 'dartc') {
queue.addTestSuite(new ClientDartcTestSuite(conf));
} else if (conf['compiler'] == 'dartc' && key == 'dartc') {
« no previous file with comments | « runtime/tests/vm/vm_dart.status ('k') | tools/test-runtime.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698