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

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

Issue 2879153005: Add support to dart2js for option --enable-asserts. (Closed)
Patch Set: Added !$checked to section predicate in co19 status file Created 3 years, 5 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/testing/dart/options.dart ('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_configurations.dart
diff --git a/tools/testing/dart/test_configurations.dart b/tools/testing/dart/test_configurations.dart
index 9a75efdeced36477d176e7a79489db228b581973..f49ccf0f259766740247c23e0323ecd5e915fa60 100644
--- a/tools/testing/dart/test_configurations.dart
+++ b/tools/testing/dart/test_configurations.dart
@@ -104,6 +104,7 @@ Future testConfigurations(List<Configuration> configurations) async {
if (configuration.isChecked) settings.add('checked');
if (configuration.isStrong) settings.add('strong');
if (configuration.useFastStartup) settings.add('fast-startup');
+ if (configuration.useEnableAsserts) settings.add('enable-asserts');
outputWords.add(settings.join('_'));
}
print(outputWords.join(' '));
« no previous file with comments | « tools/testing/dart/options.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698