| Index: test_wrapper.py
|
| ===================================================================
|
| --- test_wrapper.py (revision 3607)
|
| +++ test_wrapper.py (working copy)
|
| @@ -22,7 +22,11 @@
|
| current_directory = os.path.abspath('');
|
| client = os.path.abspath(os.path.join(tools_dir, '..'));
|
| if current_directory == os.path.join(client, 'runtime'):
|
| - dart_script_name = 'test-runtime.dart'
|
| + if GuessOS() == "macos":
|
| + dart_script_name = 'test.py'
|
| + dart_binary = 'python'
|
| + else:
|
| + dart_script_name = 'test-runtime.dart'
|
| elif current_directory == os.path.join(client, 'compiler'):
|
| dart_script_name = 'test-compiler.dart'
|
| else:
|
|
|