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

Unified Diff: tools/testing/dart/test_suite.dart

Issue 10828286: Do not force checked mode on VM. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 4 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
« tests/language/language.status ('K') | « tests/language/language.status ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/testing/dart/test_suite.dart
diff --git a/tools/testing/dart/test_suite.dart b/tools/testing/dart/test_suite.dart
index ea34f8836593b4291cacb1ed0965689404d74951..a466d8576a9a5af53f4c4a2710d2c63bccd6f672 100644
--- a/tools/testing/dart/test_suite.dart
+++ b/tools/testing/dart/test_suite.dart
@@ -456,8 +456,7 @@ class StandardTestSuite implements TestSuite {
if (configuration['runtime'] == 'vm') {
// TODO(antonm): support checked.
Bill Hesse 2012/08/14 09:21:47 Is checked mode being correctly added by other cod
Anton Muhin 2012/08/14 11:47:04 I am not sure, so I left it. I'll investigate tod
var vmArguments = new List.from(vmOptions);
- vmArguments.addAll(
- ['--enable_checked_mode', '$tempDir/out.dart']);
+ vmArguments.addAll(['$tempDir/out.dart']);
commands.add(new Command(
TestUtils.vmFileName(configuration),
vmArguments));
« tests/language/language.status ('K') | « tests/language/language.status ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698