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

Unified Diff: tools/test.py

Issue 14103003: Remove use of Expect from test scripts and idlparser_test. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Run test scripts in checked mode. Created 7 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/dom/scripts/idlparser_test.dart ('k') | tools/testing/dart/multitest.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 d04799886dd1963bacefcf23c549ba37af69fec2..f7794c19c3b083b7186382430a9919328f7edeaf 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(), dart_test_script] + args
+ command = [utils.DartBinary(), '--checked', dart_test_script] + args
Ivan Posva 2013/04/11 16:37:47 Do you really want to run the test script in check
exit_code = subprocess.call(command)
utils.DiagnoseExitCode(exit_code, command)
return exit_code
« no previous file with comments | « tools/dom/scripts/idlparser_test.dart ('k') | tools/testing/dart/multitest.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698