| 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 | 10 |
| 11 # This is OK for now, but we may want to change the semantics to match the test. |
| 12 async_star_pause_test: Fail, OK |
| 13 |
| 11 # These tests are skipped in the VM because it has "--supermixin" | 14 # These tests are skipped in the VM because it has "--supermixin" |
| 12 # functionality enabled unconditionally. The tests should be removed | 15 # functionality enabled unconditionally. The tests should be removed |
| 13 # once the same is true for analyzer (#24478) and dart2js (#23773) | 16 # once the same is true for analyzer (#24478) and dart2js (#23773) |
| 14 mixin_illegal_super_use_test: Skip # Issues 24478 and 23773 | 17 mixin_illegal_super_use_test: Skip # Issues 24478 and 23773 |
| 15 mixin_illegal_superclass_test: Skip # Issues 24478 and 23773 | 18 mixin_illegal_superclass_test: Skip # Issues 24478 and 23773 |
| 16 | 19 |
| 17 # These bugs refer currently ongoing language discussions. | 20 # These bugs refer currently ongoing language discussions. |
| 18 constructor5_test: Fail # Issue 6422 | 21 constructor5_test: Fail # Issue 6422 |
| 19 constructor6_test: Fail # Issue 6422 | 22 constructor6_test: Fail # Issue 6422 |
| 20 | 23 |
| (...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 287 assert_initializer_test: SKIP # not implemented yet, experiment is VM only. | 290 assert_initializer_test: SKIP # not implemented yet, experiment is VM only. |
| 288 | 291 |
| 289 [$runtime == vm && $compiler == none && $unchecked] | 292 [$runtime == vm && $compiler == none && $unchecked] |
| 290 assert_initializer_test/*: MissingCompileTimeError, OK # asserts shouldn't fail
in unchecked mode. | 293 assert_initializer_test/*: MissingCompileTimeError, OK # asserts shouldn't fail
in unchecked mode. |
| 291 assert_initializer_test/none: pass | 294 assert_initializer_test/none: pass |
| 292 | 295 |
| 293 [$runtime == vm && $compiler == none && $checked] | 296 [$runtime == vm && $compiler == none && $checked] |
| 294 # The VM doesn't enforce that potentially const expressions are actually | 297 # The VM doesn't enforce that potentially const expressions are actually |
| 295 # const expressions when the constructor is called with `const`. | 298 # const expressions when the constructor is called with `const`. |
| 296 assert_initializer_test/4*: MissingCompileTimeError # Issue 392. | 299 assert_initializer_test/4*: MissingCompileTimeError # Issue 392. |
| OLD | NEW |