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

Unified Diff: tools/testing/dart/test_suite.dart

Issue 11018014: Change run_vm_tests to take the VM arguments before the test name so (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 3 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
« runtime/bin/run_vm_tests.cc ('K') | « runtime/bin/run_vm_tests.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/testing/dart/test_suite.dart
diff --git a/tools/testing/dart/test_suite.dart b/tools/testing/dart/test_suite.dart
index 458ac98fa59421f89ec188e61953e9d1d74d6bdf..795f242297c9b00c8578688c5341cd2937eec921 100644
--- a/tools/testing/dart/test_suite.dart
+++ b/tools/testing/dart/test_suite.dart
@@ -143,10 +143,8 @@ class CCTestSuite implements TestSuite {
if (expectations.contains(SKIP)) return;
- // The cc test runner takes options after the name of the test
- // to run.
- var args = [testName];
- args.addAll(TestUtils.standardOptions(configuration));
+ var args = TestUtils.standardOptions(configuration);
+ args.add(testName);
doTest(new TestCase(constructedName,
[new Command(runnerPath, args)],
« runtime/bin/run_vm_tests.cc ('K') | « runtime/bin/run_vm_tests.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698