Chromium Code Reviews| Index: tests/standalone/src/io/TestRunnerTest.dart |
| diff --git a/tests/standalone/src/io/TestRunnerTest.dart b/tests/standalone/src/io/TestRunnerTest.dart |
| index c4eff2c5b95bdf0a9236aa653e247a26108d126b..03efd7c203e8c9e2c75f1a4d29e652f91d7df86c 100644 |
| --- a/tests/standalone/src/io/TestRunnerTest.dart |
| +++ b/tests/standalone/src/io/TestRunnerTest.dart |
| @@ -43,7 +43,8 @@ TestCase MakeTestCase(String testName, List<String> expectations) { |
| } |
| var configuration = { 'timeout': 2, |
| - 'special-command': '' }; |
| + 'special-command': '', |
| + 'verbose': false }; |
| return new TestCase(testName, |
| [new Command(getDartFileName(), |
| <String>["--ignore-unrecognized-flags", |
| @@ -56,12 +57,13 @@ TestCase MakeTestCase(String testName, List<String> expectations) { |
| void main() { |
| - var configuration = { 'timeout': 2, |
| - 'special-command': '' }; |
| new RunningProcess(MakeTestCase("PassTest", [PASS])).start(); |
| new RunningProcess(MakeTestCase("FailTest", [FAIL])).start(); |
| new RunningProcess(MakeTestCase("TimeoutTest", [TIMEOUT])).start(); |
| + var configuration = { 'timeout': 10, |
|
Mads Ager (google)
2012/04/19 10:15:12
I wonder if we can invoke the options parser to ge
|
| + 'special-command': '', |
| + 'verbose': false }; |
| new RunningProcess(new TestCase("CrashTest", |
| [new Command(getProcessTestFileName(), |
| const ["0", "0", "1", "1"])], |