| Index: tests/standalone/io/test_runner_test.dart
|
| diff --git a/tests/standalone/io/test_runner_test.dart b/tests/standalone/io/test_runner_test.dart
|
| index 5b540af6d1e7938d9040fd94fac5f288b78e80b4..4b2fe2ab90bcc4efb23ad75c31a352e22ca20842 100644
|
| --- a/tests/standalone/io/test_runner_test.dart
|
| +++ b/tests/standalone/io/test_runner_test.dart
|
| @@ -12,7 +12,7 @@ import "../../../tools/testing/dart/status_file_parser.dart";
|
| import "../../../tools/testing/dart/test_options.dart";
|
| import "process_test_util.dart";
|
|
|
| -final DEFAULT_TIMEOUT = 2;
|
| +final DEFAULT_TIMEOUT = 10;
|
| final LONG_TIMEOUT = 30;
|
|
|
| class TestController {
|
| @@ -140,8 +140,8 @@ void main(List<String> arguments) {
|
| throw "This test always fails, to test the test scripts.";
|
| break;
|
| case 'timeout':
|
| - // Run for 10 seconds, then exit. This tests a 2 second timeout.
|
| - new Timer(new Duration(seconds: 10), (){ });
|
| + // This process should be killed by the test after DEFAULT_TIMEOUT
|
| + new Timer(new Duration(hours: 42), (){ });
|
| break;
|
| default:
|
| throw "Unknown option ${arguments[0]} passed to test_runner_test";
|
|
|