Chromium Code Reviews| Index: tools/test.py |
| diff --git a/tools/test.py b/tools/test.py |
| index d04799886dd1963bacefcf23c549ba37af69fec2..f7794c19c3b083b7186382430a9919328f7edeaf 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(), dart_test_script] + args |
| + command = [utils.DartBinary(), '--checked', dart_test_script] + args |
|
Ivan Posva
2013/04/11 16:37:47
Do you really want to run the test script in check
|
| exit_code = subprocess.call(command) |
| utils.DiagnoseExitCode(exit_code, command) |
| return exit_code |