| 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) 2011, 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 | 7 import platform |
| 8 import string | 8 import string |
| 9 import subprocess | 9 import subprocess |
| 10 import sys | 10 import sys |
| 11 | 11 |
| 12 import utils | 12 import utils |
| 13 | 13 |
| 14 | 14 |
| 15 def Main(): | 15 def Main(): |
| 16 args = sys.argv[1:] | 16 args = sys.argv[1:] |
| 17 tools_dir = os.path.dirname(os.path.realpath(__file__)) | 17 tools_dir = os.path.dirname(os.path.realpath(__file__)) |
| 18 dart_binary_prefix = os.path.join(tools_dir, 'testing', 'bin') | |
| 19 if utils.IsWindows(): | |
| 20 dart_binary = os.path.join(dart_binary_prefix, 'windows', 'dart.exe') | |
| 21 else: | |
| 22 dart_binary = os.path.join(dart_binary_prefix, utils.GuessOS(), 'dart') | |
| 23 current_directory = os.path.abspath(''); | 18 current_directory = os.path.abspath(''); |
| 24 client = os.path.abspath(os.path.join(tools_dir, '..')); | 19 client = os.path.abspath(os.path.join(tools_dir, '..')); |
| 25 if current_directory == os.path.join(client, 'runtime'): | 20 if current_directory == os.path.join(client, 'runtime'): |
| 26 dart_script_name = 'test-runtime.dart' | 21 dart_script_name = 'test-runtime.dart' |
| 27 else: | 22 else: |
| 28 dart_script_name = 'test.dart' | 23 dart_script_name = 'test.dart' |
| 29 dart_test_script = string.join([tools_dir, dart_script_name], os.sep) | 24 dart_test_script = string.join([tools_dir, dart_script_name], os.sep) |
| 30 command = [dart_binary, dart_test_script] + args | 25 command = [utils.DartBinary(), dart_test_script] + args |
| 31 exit_code = subprocess.call(command) | 26 exit_code = subprocess.call(command) |
| 32 utils.DiagnoseExitCode(exit_code, command) | 27 utils.DiagnoseExitCode(exit_code, command) |
| 33 return exit_code | 28 return exit_code |
| 34 | 29 |
| 35 | 30 |
| 36 if __name__ == '__main__': | 31 if __name__ == '__main__': |
| 37 sys.exit(Main()) | 32 sys.exit(Main()) |
| OLD | NEW |