Chromium Code Reviews| 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 ] | |
| 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. | |
| 11 async_star_pause_test: Fail, OK | |
|
kustermann
2017/01/11 10:15:04
These 2 tests were failed before by the VM and sin
| |
| 12 | |
| 8 [ $compiler == none || $compiler == precompiler || $compiler == app_jit ] | 13 [ $compiler == none || $compiler == precompiler || $compiler == app_jit ] |
| 9 # Other issues: | 14 # Other issues: |
| 10 generic_methods_type_expression_test: RuntimeError # Issue 25869 | 15 generic_methods_type_expression_test: RuntimeError # Issue 25869 |
| 11 | 16 |
| 12 # This is OK for now, but we may want to change the semantics to match the test. | |
| 13 async_star_pause_test: Fail, OK | |
| 14 | |
| 15 # These tests are skipped in the VM because it has "--supermixin" | 17 # These tests are skipped in the VM because it has "--supermixin" |
| 16 # functionality enabled unconditionally. The tests should be removed | 18 # functionality enabled unconditionally. The tests should be removed |
| 17 # once the same is true for analyzer (#24478) and dart2js (#23773) | 19 # once the same is true for analyzer (#24478) and dart2js (#23773) |
| 18 mixin_illegal_super_use_test: Skip # Issues 24478 and 23773 | 20 mixin_illegal_super_use_test: Skip # Issues 24478 and 23773 |
| 19 mixin_illegal_superclass_test: Skip # Issues 24478 and 23773 | 21 mixin_illegal_superclass_test: Skip # Issues 24478 and 23773 |
| 20 | 22 |
| 21 # These bugs refer currently ongoing language discussions. | 23 # These bugs refer currently ongoing language discussions. |
| 22 constructor5_test: Fail # Issue 6422 | 24 constructor5_test: Fail # Issue 6422 |
| 23 constructor6_test: Fail # Issue 6422 | 25 constructor6_test: Fail # Issue 6422 |
| 24 | 26 |
| (...skipping 14 matching lines...) Expand all Loading... | |
| 39 deferred_redirecting_factory_test: Fail # Issue 23408 | 41 deferred_redirecting_factory_test: Fail # Issue 23408 |
| 40 redirecting_constructor_initializer_test: RuntimeError # Issue 23488 | 42 redirecting_constructor_initializer_test: RuntimeError # Issue 23488 |
| 41 | 43 |
| 42 # Non-contractive types are not supported in the vm. | 44 # Non-contractive types are not supported in the vm. |
| 43 cyclic_type_test/02: Fail, OK | 45 cyclic_type_test/02: Fail, OK |
| 44 cyclic_type_test/04: Fail, OK | 46 cyclic_type_test/04: Fail, OK |
| 45 cyclic_type2_test: Fail, OK | 47 cyclic_type2_test: Fail, OK |
| 46 least_upper_bound_expansive_test/*: Fail, OK | 48 least_upper_bound_expansive_test/*: Fail, OK |
| 47 | 49 |
| 48 async_star_regression_2238_test: CompileTimeError, RuntimeError # drt only runti me-errs. | 50 async_star_regression_2238_test: CompileTimeError, RuntimeError # drt only runti me-errs. |
| 49 async_star_cancel_while_paused_test: RuntimeError | |
| 50 | 51 |
| 51 # Fails because `as T` is an error rather than being treated like `as dynamic`. | 52 # Fails because `as T` is an error rather than being treated like `as dynamic`. |
| 52 generic_methods_type_expression_test: RuntimeError # Issue 27460 | 53 generic_methods_type_expression_test: RuntimeError # Issue 27460 |
| 53 | 54 |
| 54 [ ($compiler == none || $compiler == precompiler || $compiler == app_jit) && $ch ecked ] | 55 [ ($compiler == none || $compiler == precompiler || $compiler == app_jit) && $ch ecked ] |
| 55 # These generic functions tests pass for the wrong reason in checked mode, | 56 # These generic functions tests pass for the wrong reason in checked mode, |
| 56 # because the parsed type parameters are mapped to dynamic type. | 57 # because the parsed type parameters are mapped to dynamic type. |
| 57 generic_methods_function_type_test: Pass # Issue 25869 | 58 generic_methods_function_type_test: Pass # Issue 25869 |
| 58 generic_methods_test: Pass # Issue 25869 | 59 generic_methods_test: Pass # Issue 25869 |
| 59 generic_methods_new_test: Pass # Issue 25869 | 60 generic_methods_new_test: Pass # Issue 25869 |
| (...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 323 vm/optimized_stacktrace_test: Pass, Crash # Issue 28276 | 324 vm/optimized_stacktrace_test: Pass, Crash # Issue 28276 |
| 324 | 325 |
| 325 [$compiler == dart2analyzer] | 326 [$compiler == dart2analyzer] |
| 326 vm/regress_27201_test: SkipByDesign # Loads bad library, so will always crash. | 327 vm/regress_27201_test: SkipByDesign # Loads bad library, so will always crash. |
| 327 config_import_corelib_test: StaticWarning, OK | 328 config_import_corelib_test: StaticWarning, OK |
| 328 | 329 |
| 329 null_bottom_test/none: StaticWarning, CompileTimeError # Issue 28025 | 330 null_bottom_test/none: StaticWarning, CompileTimeError # Issue 28025 |
| 330 null_bottom_test/01: Pass, CompileTimeError # Issue 28025 | 331 null_bottom_test/01: Pass, CompileTimeError # Issue 28025 |
| 331 null_bottom_test/02: Pass, CompileTimeError # Issue 28025 | 332 null_bottom_test/02: Pass, CompileTimeError # Issue 28025 |
| 332 null_bottom_test/03: Pass, CompileTimeError # Issue 28025 | 333 null_bottom_test/03: Pass, CompileTimeError # Issue 28025 |
| OLD | NEW |