| OLD | NEW |
| (Empty) | |
| 1 #!/usr/bin/env python |
| 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 |
| 4 # BSD-style license that can be found in the LICENSE file. |
| 5 |
| 6 import os |
| 7 import platform |
| 8 import string |
| 9 import subprocess |
| 10 import sys |
| 11 |
| 12 from utils import GuessOS |
| 13 |
| 14 def Main(): |
| 15 args = sys.argv[1:] |
| 16 tools_dir = os.path.dirname(os.path.realpath(__file__)) |
| 17 dart_binary_prefix = os.path.join(tools_dir, 'testing', 'bin') |
| 18 if GuessOS() == "win32": |
| 19 dart_binary = os.path.join(dart_binary_prefix, 'windows', 'dart.exe') |
| 20 else: |
| 21 dart_binary = os.path.join(dart_binary_prefix, GuessOS(), 'dart') |
| 22 dart_test_script = string.join([tools_dir, 'test.dart'], os.sep) |
| 23 command = [dart_binary, dart_test_script] + args |
| 24 return subprocess.call(command) |
| 25 |
| 26 if __name__ == '__main__': |
| 27 sys.exit(Main()) |
| OLD | NEW |