| 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 == app_jit || $compiler == dartk || $runtime ==
dart_precompiled ] | 8 [ $compiler == none || $compiler == app_jit || $compiler == dartk || $runtime ==
dart_precompiled ] |
| 9 async_star_cancel_while_paused_test: RuntimeError | 9 async_star_cancel_while_paused_test: RuntimeError |
| 10 # This is OK for now, but we may want to change the semantics to match the test. | 10 # This is OK for now, but we may want to change the semantics to match the test. |
| 11 async_star_pause_test: Fail, OK | 11 async_star_pause_test: Fail, OK |
| 12 | 12 |
| 13 [ $compiler == none || $compiler == precompiler || $compiler == app_jit ] | 13 [ $compiler == none || $compiler == precompiler || $compiler == app_jit ] |
| 14 enum_test: RuntimeError # Issue 28341 |
| 14 # Other issues: | 15 # Other issues: |
| 15 generic_methods_type_expression_test: RuntimeError # Issue 25869 | 16 generic_methods_type_expression_test: RuntimeError # Issue 25869 |
| 16 | 17 |
| 17 # These tests are skipped in the VM because it has "--supermixin" | 18 # These tests are skipped in the VM because it has "--supermixin" |
| 18 # functionality enabled unconditionally. The tests should be removed | 19 # functionality enabled unconditionally. The tests should be removed |
| 19 # once the same is true for analyzer (#24478) and dart2js (#23773) | 20 # once the same is true for analyzer (#24478) and dart2js (#23773) |
| 20 mixin_illegal_super_use_test: Skip # Issues 24478 and 23773 | 21 mixin_illegal_super_use_test: Skip # Issues 24478 and 23773 |
| 21 mixin_illegal_superclass_test: Skip # Issues 24478 and 23773 | 22 mixin_illegal_superclass_test: Skip # Issues 24478 and 23773 |
| 22 | 23 |
| 23 # These bugs refer currently ongoing language discussions. | 24 # These bugs refer currently ongoing language discussions. |
| (...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 331 vm/optimized_stacktrace_test: Pass, Crash # Issue 28276 | 332 vm/optimized_stacktrace_test: Pass, Crash # Issue 28276 |
| 332 | 333 |
| 333 [$compiler == dart2analyzer] | 334 [$compiler == dart2analyzer] |
| 334 vm/regress_27201_test: SkipByDesign # Loads bad library, so will always crash. | 335 vm/regress_27201_test: SkipByDesign # Loads bad library, so will always crash. |
| 335 config_import_corelib_test: StaticWarning, OK | 336 config_import_corelib_test: StaticWarning, OK |
| 336 | 337 |
| 337 null_bottom_test/none: StaticWarning, CompileTimeError # Issue 28025 | 338 null_bottom_test/none: StaticWarning, CompileTimeError # Issue 28025 |
| 338 null_bottom_test/01: Pass, CompileTimeError # Issue 28025 | 339 null_bottom_test/01: Pass, CompileTimeError # Issue 28025 |
| 339 null_bottom_test/02: Pass, CompileTimeError # Issue 28025 | 340 null_bottom_test/02: Pass, CompileTimeError # Issue 28025 |
| 340 null_bottom_test/03: Pass, CompileTimeError # Issue 28025 | 341 null_bottom_test/03: Pass, CompileTimeError # Issue 28025 |
| OLD | NEW |