| 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 == dart2app || $compiler == dart2appjit) ] | |
| 9 string_literals_test: Skip # Issue 27433 | |
| 10 | |
| 11 [ ($compiler == none || $compiler == precompiler || $compiler == dart2app || $co
mpiler == dart2appjit) ] | 8 [ ($compiler == none || $compiler == precompiler || $compiler == dart2app || $co
mpiler == dart2appjit) ] |
| 12 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 |
| 13 generic_methods_type_expression_test: RuntimeError # Issue 25869 | 10 generic_methods_type_expression_test: RuntimeError # Issue 25869 |
| 14 | 11 |
| 15 # This is OK for now, but we may want to change the semantics to match the test. | 12 # This is OK for now, but we may want to change the semantics to match the test. |
| 16 async_star_pause_test: Fail, OK | 13 async_star_pause_test: Fail, OK |
| 17 | 14 |
| 18 # These tests are skipped in the VM because it has "--supermixin" | 15 # These tests are skipped in the VM because it has "--supermixin" |
| 19 # functionality enabled unconditionally. The tests should be removed | 16 # functionality enabled unconditionally. The tests should be removed |
| 20 # once the same is true for analyzer (#24478) and dart2js (#23773) | 17 # once the same is true for analyzer (#24478) and dart2js (#23773) |
| (...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 295 assert_initializer_test/*: MissingCompileTimeError, OK # asserts shouldn't fail
in unchecked mode. | 292 assert_initializer_test/*: MissingCompileTimeError, OK # asserts shouldn't fail
in unchecked mode. |
| 296 assert_initializer_test/none: pass | 293 assert_initializer_test/none: pass |
| 297 | 294 |
| 298 [$runtime == vm && $compiler == none && $checked] | 295 [$runtime == vm && $compiler == none && $checked] |
| 299 # The VM doesn't enforce that potentially const expressions are actually | 296 # The VM doesn't enforce that potentially const expressions are actually |
| 300 # const expressions when the constructor is called with `const`. | 297 # const expressions when the constructor is called with `const`. |
| 301 assert_initializer_test/4*: MissingCompileTimeError # Issue 392. | 298 assert_initializer_test/4*: MissingCompileTimeError # Issue 392. |
| 302 | 299 |
| 303 [$runtime == vm && $compiler == none] | 300 [$runtime == vm && $compiler == none] |
| 304 duplicate_part_test/01: MissingCompileTimeError # Issue 27516 | 301 duplicate_part_test/01: MissingCompileTimeError # Issue 27516 |
| OLD | NEW |