Chromium Code Reviews| Index: dart/frog/frog.py |
| diff --git a/dart/frog/frog.py b/dart/frog/frog.py |
| index 6824df7c334a9e8720a77f6372cb3af0fd299f5b..44dd12b015802790f3d6755e5ccce9f7c6e4533e 100755 |
| --- a/dart/frog/frog.py |
| +++ b/dart/frog/frog.py |
| @@ -188,6 +188,8 @@ def compileAndRun(options, args, dart): |
| if cleanup: shutil.rmtree(workdir) |
| if exit_code < 0: |
| print("VM exited with signal %d" % (-exit_code)) |
| + # TODO(ahe): Using 253 to signal a crash to test.dart. |
| + return 253 |
| return exit_code |
| result = 0 |