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

Unified Diff: tests/language/language_analyzer.status

Issue 610863004: Start implementing checked mode compile time errors in analyzer. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fixes based on review comments and in-person discussion Created 6 years, 3 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: tests/language/language_analyzer.status
diff --git a/tests/language/language_analyzer.status b/tests/language/language_analyzer.status
index 608454da3d04f991cc145d2312b4085a05618211..e7c0e565391d7640a375f0af5bf0d45b95ce1df5 100644
--- a/tests/language/language_analyzer.status
+++ b/tests/language/language_analyzer.status
@@ -426,15 +426,6 @@ void_type_test: StaticWarning
issue13474_test: StaticWarning, OK # Test Issue
-# Issue 16391. The analyzer handle compile-time error in checked only in these
-# cases:
-compile_time_constant_checked2_test/01: CompileTimeError # Language Issue 16391
-compile_time_constant_checked2_test/05: CompileTimeError # Language Issue 16391
-compile_time_constant_checked3_test/01: CompileTimeError # Language Issue 16391
-compile_time_constant_checked3_test/05: CompileTimeError # Language Issue 16391
-list_literal1_test/01: CompileTimeError # Issue 16391
-map_literal1_test/01: CompileTimeError # Issue 16391
-
# The following lines have been left in to quickly switch back to having deferred loading
# off by default again.
@@ -466,3 +457,35 @@ regress_12561_test: StaticWarning
main_not_a_function_test/01: Fail # http://dartbug.com/20030
main_test/03: Fail # http://dartbug.com/20030
no_main_test/01: Fail # http://dartbug.com/20030
+
+# Issue 16391. These tests are supposed to produce a compile time
+# error in checked mode, but they don't:
+[ $compiler == dartanalyzer && $checked ]
+compile_time_constant_checked2_test/02: MissingCompileTimeError # Issue 16391
+compile_time_constant_checked2_test/03: MissingCompileTimeError # Issue 16391
+compile_time_constant_checked2_test/04: MissingCompileTimeError # Issue 16391
+compile_time_constant_checked2_test/06: MissingCompileTimeError # Issue 16391
+compile_time_constant_checked3_test/02: MissingCompileTimeError # Issue 16391
+compile_time_constant_checked3_test/03: MissingCompileTimeError # Issue 16391
+compile_time_constant_checked3_test/04: MissingCompileTimeError # Issue 16391
+compile_time_constant_checked3_test/06: MissingCompileTimeError # Issue 16391
+compile_time_constant_checked_test/02: MissingCompileTimeError # Issue 16391
+const_constructor2_test/13: MissingCompileTimeError # Issue 16391
+const_constructor2_test/14: MissingCompileTimeError # Issue 16391
+const_constructor2_test/15: MissingCompileTimeError # Issue 16391
+const_constructor2_test/16: MissingCompileTimeError # Issue 16391
+const_constructor2_test/17: MissingCompileTimeError # Issue 16391
+const_constructor2_test/20: MissingCompileTimeError # Issue 16391
+const_constructor2_test/22: MissingCompileTimeError # Issue 16391
+const_constructor2_test/24: MissingCompileTimeError # Issue 16391
+const_constructor3_test/02: MissingCompileTimeError # Issue 16391
+const_constructor3_test/04: MissingCompileTimeError # Issue 16391
+const_init2_test/02: MissingCompileTimeError # Issue 16391
+malformed2_test/01: MissingCompileTimeError # Issue 16391
+
+# Issue 16391. These tests are supposed to produce a compile time
+# error in checked mode, but they produce a compile time error
+# regardless of mode:
+[ $compiler == dartanalyzer && $unchecked ]
+list_literal1_test/01: CompileTimeError # Issue 16391
+map_literal1_test/01: CompileTimeError # Issue 16391

Powered by Google App Engine
This is Rietveld 408576698