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

Unified Diff: tools/test.py

Issue 1697203002: Switch to downloaded SDK executable, drop executables in testing/bin. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 10 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 | « tools/dom/dom.py ('k') | tools/testing/bin/linux/dart.sha1 » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/test.py
diff --git a/tools/test.py b/tools/test.py
index 69b9ed814d9e961a7c77b9394e3163c3affe761e..9a32fa597bf68faeae573e8cf4e4210aeff5a12f 100755
--- a/tools/test.py
+++ b/tools/test.py
@@ -16,7 +16,8 @@ def Main():
tools_dir = os.path.dirname(os.path.realpath(__file__))
dart_script_name = 'test.dart'
dart_test_script = string.join([tools_dir, dart_script_name], os.sep)
- command = [utils.DartBinary(), '--checked', dart_test_script] + args
+ command = [utils.CheckedInSdkExecutable(),
+ '--checked', dart_test_script] + args
exit_code = subprocess.call(command)
utils.DiagnoseExitCode(exit_code, command)
return exit_code
« no previous file with comments | « tools/dom/dom.py ('k') | tools/testing/bin/linux/dart.sha1 » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698