| 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 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 | 192 |
| 193 [ $compiler == precompiler || $compiler == dart2app || $compiler == dart2appjit
] | 193 [ $compiler == precompiler || $compiler == dart2app || $compiler == dart2appjit
] |
| 194 ct_const2_test: Skip # Incompatible flag: --compile_all | 194 ct_const2_test: Skip # Incompatible flag: --compile_all |
| 195 hello_dart_test: Skip # Incompatible flag: --compile_all | 195 hello_dart_test: Skip # Incompatible flag: --compile_all |
| 196 | 196 |
| 197 [ $runtime == dart_app ] | |
| 198 number_identity_test: RuntimeError # Issue 26873 | |
| 199 | |
| 200 [ $compiler == precompiler ] | 197 [ $compiler == precompiler ] |
| 201 implicit_closure_test: Skip # Incompatible flag: --use_slow_path | 198 implicit_closure_test: Skip # Incompatible flag: --use_slow_path |
| 202 deopt_inlined_function_lazy_test: Skip # Incompatible flag: --deoptimize-alot | 199 deopt_inlined_function_lazy_test: Skip # Incompatible flag: --deoptimize-alot |
| 203 | 200 |
| 204 [ $noopt || $compiler == precompiler || $compiler == dart2app || $compiler == da
rt2appjit ] | 201 [ $noopt || $compiler == precompiler || $compiler == dart2app || $compiler == da
rt2appjit ] |
| 205 vm/type_vm_test: RuntimeError # Expects line and column numbers | 202 vm/type_vm_test: RuntimeError # Expects line and column numbers |
| 206 vm/type_cast_vm_test: RuntimeError # Expects line and column numbers | 203 vm/type_cast_vm_test: RuntimeError # Expects line and column numbers |
| 207 | 204 |
| 208 [ $mode == product ] | 205 [ $mode == product ] |
| 209 issue13474_test: SkipByDesign # Requires checked mode. | 206 issue13474_test: SkipByDesign # Requires checked mode. |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 292 assert_initializer_test/*: MissingCompileTimeError, OK # asserts shouldn't fail
in unchecked mode. | 289 assert_initializer_test/*: MissingCompileTimeError, OK # asserts shouldn't fail
in unchecked mode. |
| 293 assert_initializer_test/none: pass | 290 assert_initializer_test/none: pass |
| 294 | 291 |
| 295 [$runtime == vm && $compiler == none && $checked] | 292 [$runtime == vm && $compiler == none && $checked] |
| 296 # The VM doesn't enforce that potentially const expressions are actually | 293 # The VM doesn't enforce that potentially const expressions are actually |
| 297 # const expressions when the constructor is called with `const`. | 294 # const expressions when the constructor is called with `const`. |
| 298 assert_initializer_test/4*: MissingCompileTimeError # Issue 392. | 295 assert_initializer_test/4*: MissingCompileTimeError # Issue 392. |
| 299 | 296 |
| 300 [$runtime == vm && $compiler == none] | 297 [$runtime == vm && $compiler == none] |
| 301 duplicate_part_test/01: MissingCompileTimeError # Issue 27516 | 298 duplicate_part_test/01: MissingCompileTimeError # Issue 27516 |
| OLD | NEW |