| OLD | NEW |
| 1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
| 2 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 2 # Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file |
| 3 # for details. All rights reserved. Use of this source code is governed by a | 3 # for details. All rights reserved. Use of this source code is governed by a |
| 4 # BSD-style license that can be found in the LICENSE file. | 4 # BSD-style license that can be found in the LICENSE file. |
| 5 | 5 |
| 6 import os | 6 import os |
| 7 import platform | |
| 8 import string | 7 import string |
| 9 import subprocess | 8 import subprocess |
| 10 import sys | 9 import sys |
| 11 | 10 |
| 12 import utils | 11 import utils |
| 13 | 12 |
| 14 | 13 |
| 15 def Main(): | 14 def Main(): |
| 16 args = sys.argv[1:] | 15 args = sys.argv[1:] |
| 17 tools_dir = os.path.dirname(os.path.realpath(__file__)) | 16 tools_dir = os.path.dirname(os.path.realpath(__file__)) |
| 18 current_directory = os.path.abspath(''); | |
| 19 client = os.path.abspath(os.path.join(tools_dir, '..')); | |
| 20 dart_script_name = 'test.dart' | 17 dart_script_name = 'test.dart' |
| 21 dart_test_script = string.join([tools_dir, dart_script_name], os.sep) | 18 dart_test_script = string.join([tools_dir, dart_script_name], os.sep) |
| 22 command = [utils.DartBinary(), '--checked', dart_test_script] + args | 19 command = [utils.DartBinary(), '--checked', dart_test_script] + args |
| 23 exit_code = subprocess.call(command) | 20 exit_code = subprocess.call(command) |
| 24 utils.DiagnoseExitCode(exit_code, command) | 21 utils.DiagnoseExitCode(exit_code, command) |
| 25 return exit_code | 22 return exit_code |
| 26 | 23 |
| 27 | 24 |
| 28 if __name__ == '__main__': | 25 if __name__ == '__main__': |
| 29 sys.exit(Main()) | 26 sys.exit(Main()) |
| OLD | NEW |