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

Unified Diff: tests/compiler/dart2js/kernel/closed_world_tester.dart

Issue 2835323004: Handle @NoInline annotations in closed_world2_test (Closed)
Patch Set: Updated cf. comments 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 | « tests/compiler/dart2js/kernel/closed_world2_test.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/compiler/dart2js/kernel/closed_world_tester.dart
diff --git a/tests/compiler/dart2js/kernel/closed_world_tester.dart b/tests/compiler/dart2js/kernel/closed_world_tester.dart
index be3796b9e0f01da4f3f2fd38e8941e09cd8f62de..aac7e5bc45bc959318b99f91252e1223665c32c4 100644
--- a/tests/compiler/dart2js/kernel/closed_world_tester.dart
+++ b/tests/compiler/dart2js/kernel/closed_world_tester.dart
@@ -32,5 +32,9 @@ main(List<String> args) async {
Future testFile(File file) async {
print('====================================================================');
print('testing ${file.path}');
- await mainInternal([file.path]);
+ try {
+ await mainInternal([file.path], skipWarnings: true, skipErrors: true);
+ } catch (e, s) {
+ print('$e:\n$s');
+ }
}
« no previous file with comments | « tests/compiler/dart2js/kernel/closed_world2_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698