File tree 2 files changed +10
-4
lines changed
2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -181,14 +181,20 @@ regress_22443_test: Skip
181
181
[ $runtime == vm && $mode == product ]
182
182
vm/type_vm_test: Fail,OK # Expects exact type name.
183
183
184
- [ $compiler == none && $browser ]
184
+ [ ( $compiler == none || $compiler == precompiler || $compiler == dart2app) && $browser ]
185
185
# The following tests are supposed to fail.
186
186
library_env_test/has_io_support: RuntimeError, OK
187
187
library_env_test/has_no_html_support: RuntimeError, OK
188
- library_env_test/has_no_mirror_support: RuntimeError, OK
189
188
190
- [ $compiler == none && $browser != true ]
189
+ [ ( $compiler == none || $compiler == precompiler || $compiler == dart2app) && $browser != true ]
191
190
# The following tests are supposed to fail.
192
191
library_env_test/has_html_support: RuntimeError, OK
193
192
library_env_test/has_no_io_support: RuntimeError, OK
193
+
194
+ [ $compiler == none && $noopt == false && $mode != product ]
195
+ # The following tests are supposed to fail.
194
196
library_env_test/has_no_mirror_support: RuntimeError, OK
197
+
198
+ [ $noopt || $compiler == precompiler || $mode == product ]
199
+ # The following tests are supposed to fail.
200
+ library_env_test/has_mirror_support: RuntimeError, OK
Original file line number Diff line number Diff line change 5
5
import 'package:expect/expect.dart' ;
6
6
7
7
main () {
8
- const NOT_PRESENT = null ;
8
+ const NOT_PRESENT = false ;
9
9
10
10
Expect .isTrue (const bool .fromEnvironment ("dart.library.async" ));
11
11
Expect .isTrue (const bool .fromEnvironment ("dart.library.collection" ));
You can’t perform that action at this time.
0 commit comments