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

Unified Diff: tests/language/language.status

Issue 2002923002: Implement assert in initializer list in VM. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Update to match updated design document. Created 4 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
« runtime/vm/parser.cc ('K') | « tests/language/assert_initializer_test.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/language.status
diff --git a/tests/language/language.status b/tests/language/language.status
index b427eff611d197ff94e50cb1567263dd8c85d5b3..e6bcf4546642fa6af5dea29d784c7e6de9c8975d 100644
--- a/tests/language/language.status
+++ b/tests/language/language.status
@@ -252,3 +252,15 @@ issue23244_test: Skip # Issue #26373
deferred_load_inval_code_test: RuntimeError
regress_26453_test: Pass, Fail, Crash
vm/regress_16873_test: Pass, Crash
+
+[$runtime != vm || $compiler != none]
+assert_initializer_test: SKIP # not implemented yet, experiment is VM only.
+
+[$runtime == vm && $compiler == none && $unchecked]
+assert_initializer_test/*: MissingCompileTimeError, OK # asserts shouldn't fail in unchecked mode.
+assert_initializer_test/none: pass
+
+[$runtime == vm && $compiler == none && $checked]
+// The VM doesn't enforce that potentially const expressions are actually
+// const expressions when the constructor is called with `const`.
+assert_initializer_test/4*: MissingCompileTimeError # Issue 392.
« runtime/vm/parser.cc ('K') | « tests/language/assert_initializer_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698