| 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 generic_methods_type_expression_test: RuntimeError # Issue 25869 | 10 generic_methods_type_expression_test: RuntimeError # Issue 25869 |
| (...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 [ $noopt || $compiler == precompiler || $compiler == dart2app || $compiler == da
rt2appjit || $mode == product ] | 182 [ $noopt || $compiler == precompiler || $compiler == dart2app || $compiler == da
rt2appjit || $mode == product ] |
| 183 # Deferred loading happens eagerly | 183 # Deferred loading happens eagerly |
| 184 regress_23408_test: Skip | 184 regress_23408_test: Skip |
| 185 deferred_inheritance_constraints_test: Skip | 185 deferred_inheritance_constraints_test: Skip |
| 186 deferred_global_test: Skip | 186 deferred_global_test: Skip |
| 187 deferred_load_constants_test: Skip | 187 deferred_load_constants_test: Skip |
| 188 tearoff_basic_test: Skip | 188 tearoff_basic_test: Skip |
| 189 deferred_static_seperate_test: Skip | 189 deferred_static_seperate_test: Skip |
| 190 deferred_constraints_type_annotation_test/new_before_load: Skip | 190 deferred_constraints_type_annotation_test/new_before_load: Skip |
| 191 regress_22443_test: Skip | 191 regress_22443_test: Skip |
| 192 deferred_not_loaded_check_test: Skip |
| 192 | 193 |
| 193 [ $compiler == precompiler || $compiler == dart2app || $compiler == dart2appjit
] | 194 [ $compiler == precompiler || $compiler == dart2app || $compiler == dart2appjit
] |
| 194 ct_const2_test: Skip # Incompatible flag: --compile_all | 195 ct_const2_test: Skip # Incompatible flag: --compile_all |
| 195 hello_dart_test: Skip # Incompatible flag: --compile_all | 196 hello_dart_test: Skip # Incompatible flag: --compile_all |
| 196 | 197 |
| 197 [ $compiler == precompiler ] | 198 [ $compiler == precompiler ] |
| 198 implicit_closure_test: Skip # Incompatible flag: --use_slow_path | 199 implicit_closure_test: Skip # Incompatible flag: --use_slow_path |
| 199 deopt_inlined_function_lazy_test: Skip # Incompatible flag: --deoptimize-alot | 200 deopt_inlined_function_lazy_test: Skip # Incompatible flag: --deoptimize-alot |
| 200 | 201 |
| 201 [ $noopt || $compiler == precompiler || $compiler == dart2app || $compiler == da
rt2appjit ] | 202 [ $noopt || $compiler == precompiler || $compiler == dart2app || $compiler == da
rt2appjit ] |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 284 assert_initializer_test/*: MissingCompileTimeError, OK # asserts shouldn't fail
in unchecked mode. | 285 assert_initializer_test/*: MissingCompileTimeError, OK # asserts shouldn't fail
in unchecked mode. |
| 285 assert_initializer_test/none: pass | 286 assert_initializer_test/none: pass |
| 286 | 287 |
| 287 [$runtime == vm && $compiler == none && $checked] | 288 [$runtime == vm && $compiler == none && $checked] |
| 288 # The VM doesn't enforce that potentially const expressions are actually | 289 # The VM doesn't enforce that potentially const expressions are actually |
| 289 # const expressions when the constructor is called with `const`. | 290 # const expressions when the constructor is called with `const`. |
| 290 assert_initializer_test/4*: MissingCompileTimeError # Issue 392. | 291 assert_initializer_test/4*: MissingCompileTimeError # Issue 392. |
| 291 | 292 |
| 292 [$runtime == vm && $compiler == none] | 293 [$runtime == vm && $compiler == none] |
| 293 duplicate_part_test/01: MissingCompileTimeError # Issue 27516 | 294 duplicate_part_test/01: MissingCompileTimeError # Issue 27516 |
| OLD | NEW |