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

Unified Diff: tools/test.py

Issue 234673003: Reduce test.dart memory usage. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Improve Created 6 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
Index: tools/test.py
diff --git a/tools/test.py b/tools/test.py
index f7794c19c3b083b7186382430a9919328f7edeaf..d04799886dd1963bacefcf23c549ba37af69fec2 100755
--- a/tools/test.py
+++ b/tools/test.py
@@ -19,7 +19,7 @@ def Main():
client = os.path.abspath(os.path.join(tools_dir, '..'));
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.DartBinary(), dart_test_script] + args
exit_code = subprocess.call(command)
utils.DiagnoseExitCode(exit_code, command)
return exit_code

Powered by Google App Engine
This is Rietveld 408576698