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

Unified Diff: tools/test.py

Issue 2848103002: Move test.dart into testing/dart. (Closed)
Patch Set: Remove pointless LeftOverTempDirPrinter class. Created 3 years, 8 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/test.dart ('k') | tools/testing/dart/main.dart » ('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 d9548550dac6ebb42036754241874514580fa101..3b456061e58fb2fa37215f2136ec3593dbbfedd3 100755
--- a/tools/test.py
+++ b/tools/test.py
@@ -14,8 +14,8 @@ import utils
def Main():
args = sys.argv[1:]
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)
+ dart_test_script = string.join(
+ [tools_dir, 'testing', 'dart', 'main.dart'], os.sep)
command = [utils.CheckedInSdkExecutable(),
'--checked', dart_test_script] + args
« no previous file with comments | « tools/test.dart ('k') | tools/testing/dart/main.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698