Chromium Code Reviews| 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 # Try to guess the host operating system. | |
| 13 def GuessOS(): | |
|
ahe
2012/01/04 15:38:40
Any reason for not importing this from utils.py?
Mads Ager (google)
2012/01/05 14:15:45
I had two reasons:
1. I want to return 'windows'
ahe
2012/01/05 14:19:52
Thank you!
| |
| 14 id = platform.system() | |
| 15 if id == "Linux": | |
| 16 return "linux" | |
| 17 elif id == "Darwin": | |
| 18 return "macos" | |
| 19 elif id == "Windows" or id == "Microsoft": | |
| 20 # On Windows Vista platform.system() can return "Microsoft" with some | |
| 21 # versions of Python, see http://bugs.python.org/issue1082 for details. | |
| 22 return "windows" | |
| 23 else: | |
| 24 return None | |
| 25 | |
| 26 def Main(): | |
| 27 args = string.join(sys.argv[1:]) | |
| 28 tools_dir = os.path.dirname(os.path.realpath(__file__)) | |
| 29 dart_binary = string.join([tools_dir, 'testing', 'bin', GuessOS(), 'dart'], | |
|
ahe
2012/01/04 15:38:40
os.path.join(tools_dir, 'testing', 'bin', GuessOS(
Mads Ager (google)
2012/01/05 14:15:45
Thanks! Done.
| |
| 30 os.sep) | |
| 31 if GuessOS() == "windows": | |
| 32 dart_binary = dart_binary + ".exe" | |
| 33 dart_test_script = string.join([tools_dir, 'test.dart'], os.sep) | |
| 34 command = "%s %s %s" % (dart_binary, dart_test_script, args) | |
|
ahe
2012/01/04 15:38:40
command = [dart_binary, dart_test_script] + args
Mads Ager (google)
2012/01/05 14:15:45
Done.
| |
| 35 return subprocess.call(command, shell=True) | |
| 36 | |
| 37 if __name__ == '__main__': | |
| 38 sys.exit(Main()) | |
| OLD | NEW |