OLD | NEW |
1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
2 # for details. All rights reserved. Use of this source code is governed by a | 2 # for details. All rights reserved. Use of this source code is governed by a |
3 # BSD-style license that can be found in the LICENSE file. | 3 # BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 # This directory contains tests that are intended to show the | 5 # This directory contains tests that are intended to show the |
6 # current state of the language. | 6 # current state of the language. |
7 | 7 |
8 [ $compiler != none || ($runtime != vm && $runtime != dartium && $runtime != drt
)] | 8 [ $compiler != none || ($runtime != vm && $runtime != dartium && $runtime != drt
)] |
9 arg_param_trailing_comma_test/none: Fail # Issue 26644 | 9 arg_param_trailing_comma_test/none: Fail # Issue 26644 |
10 | 10 |
(...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
245 large_class_declaration_test: Skip | 245 large_class_declaration_test: Skip |
246 | 246 |
247 [ $compiler == precompiler && $runtime == dart_precompiled && $system == android
] | 247 [ $compiler == precompiler && $runtime == dart_precompiled && $system == android
] |
248 vm/optimized_guarded_field_isolates_test: Skip # Issue #26373 | 248 vm/optimized_guarded_field_isolates_test: Skip # Issue #26373 |
249 issue23244_test: Skip # Issue #26373 | 249 issue23244_test: Skip # Issue #26373 |
250 | 250 |
251 [ $hot_reload ] | 251 [ $hot_reload ] |
252 deferred_load_inval_code_test: RuntimeError | 252 deferred_load_inval_code_test: RuntimeError |
253 regress_26453_test: Pass, Fail, Crash | 253 regress_26453_test: Pass, Fail, Crash |
254 vm/regress_16873_test: Pass, Crash | 254 vm/regress_16873_test: Pass, Crash |
| 255 |
| 256 [$runtime != vm || $compiler != none] |
| 257 assert_initializer_test: SKIP # not implemented yet, experiment is VM only. |
| 258 |
| 259 [$runtime == vm && $compiler == none && $unchecked] |
| 260 assert_initializer_test/*: MissingCompileTimeError, OK # asserts shouldn't fail
in unchecked mode. |
| 261 assert_initializer_test/none: pass |
| 262 |
| 263 [$runtime == vm && $compiler == none && $checked] |
| 264 // The VM doesn't enforce that potentially const expressions are actually |
| 265 // const expressions when the constructor is called with `const`. |
| 266 assert_initializer_test/4*: MissingCompileTimeError # Issue 392. |
OLD | NEW |