Index: tests/lib/lib.status |
diff --git a/tests/lib/lib.status b/tests/lib/lib.status |
index 8c17e5bcab723781caa0a2edde8459df2db488d6..5a8dcdb51bf9c26dac2244683e755a31016575e8 100644 |
--- a/tests/lib/lib.status |
+++ b/tests/lib/lib.status |
@@ -186,7 +186,7 @@ async/timer_not_available_test: Fail, OK # only meant to test when there is no w |
# 'js' tests import the dart:js library, so they only make sense in |
# a browser environment. |
-[ $runtime == vm ] |
+[ ($runtime == vm || $runtime == dart_precompiled) ] |
js/*: Skip |
[ $compiler == dart2js && $minified ] |
@@ -223,19 +223,19 @@ async/multiple_timer_test: Pass, Fail # Probably issue 14734 |
# TODO(efortuna): Investigate. |
async/timer_test: Fail, Pass |
-[ $runtime == vm ] |
+[ ($runtime == vm || $runtime == dart_precompiled) ] |
async/timer_not_available_test: Fail, OK |
mirrors/native_class_test: Fail, OK # This test is meant to run in a browser. |
mirrors/deferred_type_test: CompileTimeError, OK # Don't have a multitest marker for dynamic compile time errors. |
-[ $compiler == none ] |
+[ ($compiler == none || $compiler == precompiler) ] |
async/timer_not_available_test: SkipByDesign # only meant to test when there is no way to implement timer (currently only in d8) |
mirrors/symbol_validation_test: RuntimeError # Issue 13596 |
mirrors/mirrors_used*: SkipByDesign # Invalid tests. MirrorsUsed does not have a specification, and dart:mirrors is not required to hide declarations that are not covered by any MirrorsUsed annotation. |
-[ $compiler == none && ( $runtime == drt || $runtime == dartium || $runtime == ContentShellOnAndroid) ] |
+[ ($compiler == none || $compiler == precompiler) && ( $runtime == drt || $runtime == dartium || $runtime == ContentShellOnAndroid) ] |
async/schedule_microtask6_test: Fail # Issue 10910 |
async/timer_test: Fail, Pass # Issue 15487 |
async/multiple_timer_test: Fail, Pass # Issue 15487 |
@@ -248,14 +248,14 @@ mirrors/spawn_function_root_library_test: SkipByDesign # Uses spawnFunction. |
mirrors/local_isolate_test: RuntimeError # Issue 12188 |
mirrors/deferred_type_test: RuntimeError, OK # Should be CompileTimeError. Issue 22072 |
-[ $compiler == none && $runtime == drt && $system == windows ] |
+[ ($compiler == none || $compiler == precompiler) && $runtime == drt && $system == windows ] |
async/multiple_timer_test: Fail, Pass # See Issue 10982 |
async/timer_test: Fail, Pass # See Issue 10982 |
-[ $compiler == none && $runtime == drt && $checked ] |
+[ ($compiler == none || $compiler == precompiler) && $runtime == drt && $checked ] |
async/slow_consumer_test: Fail, Pass # Dartium JsInterop failure, dartbug.com/24460 |
-[$compiler == none && $runtime == ContentShellOnAndroid ] |
+[($compiler == none || $compiler == precompiler) && $runtime == ContentShellOnAndroid ] |
async/stream_timeout_test: RuntimeError, Pass # Issue 19127 |
async/slow_consumer3_test: SkipSlow # Times out flakily. Issue 20956 |
async/slow_consumer2_test: SkipSlow # Times out flakily. Issue 20956 |
@@ -305,7 +305,7 @@ mirrors/*deferred*: Skip # Issue 17458 |
[ $compiler == dart2js && $mode == debug ] |
mirrors/native_class_test: Pass, Slow |
-[ $compiler == none && $arch == mips ] |
+[ ($compiler == none || $compiler == precompiler) && $arch == mips ] |
async/timer_regress22626_test: Pass, RuntimeError # Issue 22626 |
[ $arch == simarm || $arch == simarmv5te ] |
@@ -325,16 +325,16 @@ convert/utf85_test: Skip # Pass, Slow Issue 20111. |
[ $mode == debug && $arch == ia32 && $system == windows ] |
convert/streamed_conversion_json_utf8_decode_test: Skip # Verification OOM. |
-[ $runtime == vm && $mode == debug && $arch == x64 && $system == windows ] |
+[ ($runtime == vm || $runtime == dart_precompiled) && $mode == debug && $arch == x64 && $system == windows ] |
convert/streamed_conversion_json_utf8_decode_test: Pass, Slow |
-[ $runtime == vm && $mode == release && $arch == ia32 && $system == windows ] |
+[ ($runtime == vm || $runtime == dart_precompiled) && $mode == release && $arch == ia32 && $system == windows ] |
convert/json_test: RuntimeError # Issue 24908 |
[ $mode == debug && $arch != ia32 && $arch != x64 && $arch != simarm && $arch != simarmv5te ] |
convert/streamed_conversion_json_utf8_decode_test: Skip # Verification not yet implemented. |
-[ $runtime == vm && $mode == debug && $builder_tag == asan ] |
+[ ($runtime == vm || $runtime == dart_precompiled) && $mode == debug && $builder_tag == asan ] |
mirrors/immutable_collections_test: SkipSlow # Timeout. |
convert/streamed_conversion_json_utf8_decode_test: Skip # Timeout. |
@@ -357,7 +357,7 @@ mirrors/typedef_library_test: Crash # Assertion failure: typedef(G) has not been |
[ $compiler != dart2js ] |
async/dart2js_uncaught_error_test: Skip # JS-integration only test |
-[ $noopt ] |
+[ ($noopt || $compiler == precompiler) ] |
mirrors/*: SkipByDesign |
convert/chunked_conversion_utf88_test: Pass, Timeout |
convert/utf85_test: Pass, Timeout |