| 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 || $compiler == precompiler || $compiler == dart2app || $co
mpiler == dart2appjit) ] | 8 [ ($compiler == none || $compiler == precompiler || $compiler == dart2app || $co
mpiler == dart2appjit) ] |
| 9 tearoff_constructor_basic_test: Skip # Crashes in checked mode -- hausner invest
igating | 9 tearoff_constructor_basic_test: Skip # Crashes in checked mode -- hausner invest
igating |
| 10 generic_methods_type_expression_test: RuntimeError # Issue 25869 | 10 generic_methods_type_expression_test: RuntimeError # Issue 25869 |
| (...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 301 assert_initializer_test/*: MissingCompileTimeError, OK # asserts shouldn't fail
in unchecked mode. | 301 assert_initializer_test/*: MissingCompileTimeError, OK # asserts shouldn't fail
in unchecked mode. |
| 302 assert_initializer_test/none: pass | 302 assert_initializer_test/none: pass |
| 303 | 303 |
| 304 [$runtime == vm && $compiler == none && $checked] | 304 [$runtime == vm && $compiler == none && $checked] |
| 305 # The VM doesn't enforce that potentially const expressions are actually | 305 # The VM doesn't enforce that potentially const expressions are actually |
| 306 # const expressions when the constructor is called with `const`. | 306 # const expressions when the constructor is called with `const`. |
| 307 assert_initializer_test/4*: MissingCompileTimeError # Issue 392. | 307 assert_initializer_test/4*: MissingCompileTimeError # Issue 392. |
| 308 | 308 |
| 309 [$runtime == vm && $compiler == none] | 309 [$runtime == vm && $compiler == none] |
| 310 duplicate_part_test/01: MissingCompileTimeError # Issue 27516 | 310 duplicate_part_test/01: MissingCompileTimeError # Issue 27516 |
| 311 |
| 312 [ ($arch == simdbc || $arch == simdbc64) && $mode == debug ] |
| 313 null_test/none: Crash # Issue 27731 |
| 314 |
| 315 [ ($arch == simdbc || $arch == simdbc64) && $checked ] |
| 316 many_generic_instanceof_test: RuntimeError # Issue 27733 |
| OLD | NEW |