Chromium Code Reviews| Index: tools/testing/dart/test_runner.dart |
| =================================================================== |
| --- tools/testing/dart/test_runner.dart (revision 43502) |
| +++ tools/testing/dart/test_runner.dart (working copy) |
| @@ -943,8 +943,9 @@ |
| } |
| bool get hasCrashed { |
| - // The Java dartc runner and dart2js exits with code 253 in case |
| - // of unhandled exceptions. |
| + // dart2js exits with code 253 in case of unhandled exceptions. |
| + // The dart binary exits with code 253 in case of an API error such |
| + // as an invalid snapshot file. |
|
ricow1
2015/02/05 14:00:42
dart2js exits with code 253 in case of a compiler
Ivan Posva
2015/02/05 14:26:24
Done.
|
| if (exitCode == 253) return true; |
| if (io.Platform.operatingSystem == 'windows') { |
| // The VM uses std::abort to terminate on asserts. |