Chromium Code Reviews| Index: tools/test.py |
| diff --git a/tools/test.py b/tools/test.py |
| index f7794c19c3b083b7186382430a9919328f7edeaf..d04799886dd1963bacefcf23c549ba37af69fec2 100755 |
| --- a/tools/test.py |
| +++ b/tools/test.py |
| @@ -19,7 +19,7 @@ def Main(): |
| client = os.path.abspath(os.path.join(tools_dir, '..')); |
| dart_script_name = 'test.dart' |
| dart_test_script = string.join([tools_dir, dart_script_name], os.sep) |
| - command = [utils.DartBinary(), '--checked', dart_test_script] + args |
| + command = [utils.DartBinary(), dart_test_script] + args |
|
ricow1
2014/04/23 14:58:34
I don't like this, this is catching issues for us
Bill Hesse
2014/04/23 15:08:06
Agreed. Removed.
|
| exit_code = subprocess.call(command) |
| utils.DiagnoseExitCode(exit_code, command) |
| return exit_code |