Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(541)

Unified Diff: test_wrapper.py

Issue 9169056: Revert 3502 as it causes flaky test runs on Macs: (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/tools/
Patch Set: Created 8 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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:
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698