| 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)],
|
|
|