| 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 tearoff_basic_test: CompileTimeError | |
| 9 tearoff_constructor_basic_test: CompileTimeError | |
| 10 | |
| 11 [ $compiler == none || $compiler == app_jit ] | 8 [ $compiler == none || $compiler == app_jit ] |
| 12 null_is_bottom_test/22: RuntimeError # Issue 28025 | 9 null_is_bottom_test/22: RuntimeError # Issue 28025 |
| 13 null_is_bottom_test/34: RuntimeError # Issue 28025 | 10 null_is_bottom_test/34: RuntimeError # Issue 28025 |
| 14 | 11 |
| 15 [ $compiler == none || $compiler == precompiler || $compiler == app_jit ] | 12 [ $compiler == none || $compiler == precompiler || $compiler == app_jit ] |
| 13 # Tests that use the name#field tear off syntax which has been deprecated. |
| 14 tearoff_basic_test: CompileTimeError |
| 15 tearoff_constructor_basic_test: CompileTimeError |
| 16 # Other issues: |
| 16 generic_methods_type_expression_test: RuntimeError # Issue 25869 | 17 generic_methods_type_expression_test: RuntimeError # Issue 25869 |
| 17 null_is_bottom_test/05: RuntimeError # Issue 28025 | 18 null_is_bottom_test/05: RuntimeError # Issue 28025 |
| 18 null_is_bottom_test/07: RuntimeError # Issue 28025 | 19 null_is_bottom_test/07: RuntimeError # Issue 28025 |
| 19 null_is_bottom_test/20: RuntimeError # Issue 28025 | 20 null_is_bottom_test/20: RuntimeError # Issue 28025 |
| 20 null_is_bottom_test/25: RuntimeError # Issue 28025 | 21 null_is_bottom_test/25: RuntimeError # Issue 28025 |
| 21 null_is_bottom_test/27: RuntimeError # Issue 28025 | 22 null_is_bottom_test/27: RuntimeError # Issue 28025 |
| 22 null_is_bottom_test/32: RuntimeError # Issue 28025 | 23 null_is_bottom_test/32: RuntimeError # Issue 28025 |
| 23 null_is_bottom_test/37: RuntimeError # Issue 28025 | 24 null_is_bottom_test/37: RuntimeError # Issue 28025 |
| 24 null_is_bottom_test/39: RuntimeError # Issue 28025 | 25 null_is_bottom_test/39: RuntimeError # Issue 28025 |
| 25 | 26 |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 map_literal4_test: Fail # Issue 14651. | 102 map_literal4_test: Fail # Issue 14651. |
| 102 named_parameters_type_test/01: Fail # Issue 14651. | 103 named_parameters_type_test/01: Fail # Issue 14651. |
| 103 named_parameters_type_test/02: Fail # Issue 14651. | 104 named_parameters_type_test/02: Fail # Issue 14651. |
| 104 named_parameters_type_test/03: Fail # Issue 14651. | 105 named_parameters_type_test/03: Fail # Issue 14651. |
| 105 positional_parameters_type_test/01: Fail # Issue 14651. | 106 positional_parameters_type_test/01: Fail # Issue 14651. |
| 106 positional_parameters_type_test/02: Fail # Issue 14651. | 107 positional_parameters_type_test/02: Fail # Issue 14651. |
| 107 type_checks_in_factory_method_test: Fail # Issue 14651. | 108 type_checks_in_factory_method_test: Fail # Issue 14651. |
| 108 vm/type_vm_test: Fail # Issue 14651. | 109 vm/type_vm_test: Fail # Issue 14651. |
| 109 | 110 |
| 110 [ $compiler == none && ($runtime == dartium || $runtime == drt) ] | 111 [ $compiler == none && ($runtime == dartium || $runtime == drt) ] |
| 112 # Tests that use the name#field tear off syntax which has been deprecated. |
| 113 tearoff_basic_test: RunTimeError |
| 114 tearoff_constructor_basic_test: RunTimeError |
| 115 # Other issues. |
| 111 issue13474_test: Pass, Fail # Issue 14651. | 116 issue13474_test: Pass, Fail # Issue 14651. |
| 112 config_import_test: Fail # Issue 14651. | 117 config_import_test: Fail # Issue 14651. |
| 113 vm/optimized_guarded_field_isolates_test: RuntimeError, OK # Uses Isolate.spawn
. | 118 vm/optimized_guarded_field_isolates_test: RuntimeError, OK # Uses Isolate.spawn
. |
| 114 main_test/01: Fail # Issue 20028 | 119 main_test/01: Fail # Issue 20028 |
| 115 main_test/02: Fail # Issue 20028 | 120 main_test/02: Fail # Issue 20028 |
| 116 main_test/04: Fail # Issue 20028 | 121 main_test/04: Fail # Issue 20028 |
| 117 main_test/05: Fail # Issue 20028 | 122 main_test/05: Fail # Issue 20028 |
| 118 main_test/21: Fail # Issue 20028 | 123 main_test/21: Fail # Issue 20028 |
| 119 main_test/42: Fail # Issue 20028 | 124 main_test/42: Fail # Issue 20028 |
| 120 mirror_in_static_init_test: Fail # Issue 22071 | 125 mirror_in_static_init_test: Fail # Issue 22071 |
| (...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 332 # The VM doesn't enforce that potentially const expressions are actually | 337 # The VM doesn't enforce that potentially const expressions are actually |
| 333 # const expressions when the constructor is called with `const`. | 338 # const expressions when the constructor is called with `const`. |
| 334 assert_initializer_test/4*: MissingCompileTimeError # Issue 392. | 339 assert_initializer_test/4*: MissingCompileTimeError # Issue 392. |
| 335 | 340 |
| 336 [$runtime == vm && $compiler == none] | 341 [$runtime == vm && $compiler == none] |
| 337 duplicate_part_test/01: MissingCompileTimeError # Issue 27516 | 342 duplicate_part_test/01: MissingCompileTimeError # Issue 27516 |
| 338 | 343 |
| 339 [$compiler == dart2analyzer] | 344 [$compiler == dart2analyzer] |
| 340 vm/regress_27201_test: SkipByDesign # Loads bad library, so will always crash. | 345 vm/regress_27201_test: SkipByDesign # Loads bad library, so will always crash. |
| 341 config_import_corelib_test: StaticWarning, OK | 346 config_import_corelib_test: StaticWarning, OK |
| OLD | NEW |