| OLD | NEW |
| 1 # Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2017, 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 # All static_tests have expected compile-time errors. | 5 # All static_tests have expected compile-time errors. |
| 6 [ $strong && $compiler != dart2analyzer && $compiler != dartdevc ] | 6 [ $strong && $compiler != dart2analyzer && $compiler != dartdevc ] |
| 7 core_runtime_types_static_test: MissingCompileTimeError | 7 core_runtime_types_static_test: MissingCompileTimeError |
| 8 string_static_test: MissingCompileTimeError |
| 8 | 9 |
| 9 [ !$strong && $compiler != dartdevc && $checked ] | 10 [ !$strong && $compiler != dartdevc && $checked ] |
| 10 core_runtime_types_static_test: MissingCompileTimeError | 11 core_runtime_types_static_test: MissingCompileTimeError |
| 12 string_static_test: MissingCompileTimeError |
| 11 | 13 |
| 12 [ !$strong && !$checked ] | 14 [ !$strong && !$checked ] |
| 13 core_runtime_types_static_test: MissingCompileTimeError | 15 core_runtime_types_static_test: MissingCompileTimeError |
| 16 string_static_test: MissingCompileTimeError |
| 14 | 17 |
| 15 [ $compiler == dart2js && $fast_startup ] | 18 [ $compiler == dart2js && $fast_startup ] |
| 16 apply3_test: Fail # mirrors not supported | 19 apply3_test: Fail # mirrors not supported |
| 17 | 20 |
| 18 [ $compiler == precompiler ] | 21 [ $compiler == precompiler ] |
| 19 apply3_test: SkipByDesign | 22 apply3_test: SkipByDesign |
| 20 big_integer_huge_mul_vm_test: Pass, Timeout # --no_intrinsify | 23 big_integer_huge_mul_vm_test: Pass, Timeout # --no_intrinsify |
| 21 | 24 |
| 22 [ $compiler == dartdevc && $runtime != none ] | 25 [ $compiler == dartdevc && $runtime != none ] |
| 23 apply2_test: RuntimeError # Issue 29921 | 26 apply2_test: RuntimeError # Issue 29921 |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 symbol_test/none: RuntimeError # Issue 27394 | 152 symbol_test/none: RuntimeError # Issue 27394 |
| 150 | 153 |
| 151 [ $compiler == dart2js && $runtime == jsshell ] | 154 [ $compiler == dart2js && $runtime == jsshell ] |
| 152 symbol_test/none: RuntimeError | 155 symbol_test/none: RuntimeError |
| 153 | 156 |
| 154 [ $compiler == none && $runtime == vm ] | 157 [ $compiler == none && $runtime == vm ] |
| 155 string_static_test: MissingCompileTimeError | 158 string_static_test: MissingCompileTimeError |
| 156 | 159 |
| 157 [ $compiler == dart2js && $runtime != none] | 160 [ $compiler == dart2js && $runtime != none] |
| 158 symbol_reserved_word_test/03: RuntimeError # Issue 19972, new Symbol('void') sho
uld be allowed. | 161 symbol_reserved_word_test/03: RuntimeError # Issue 19972, new Symbol('void') sho
uld be allowed. |
| OLD | NEW |