| 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 string_static_test: MissingCompileTimeError |
| 9 | 9 |
| 10 [ !$strong && $compiler != dartdevc && $checked ] | 10 [ !$strong && $compiler != dartdevc && $checked ] |
| 11 core_runtime_types_static_test: MissingCompileTimeError | 11 core_runtime_types_static_test: MissingCompileTimeError |
| 12 string_static_test: MissingCompileTimeError | 12 string_static_test: MissingCompileTimeError |
| 13 | 13 |
| 14 [ !$strong && !$checked ] | 14 [ !$strong && !$checked ] |
| 15 core_runtime_types_static_test: MissingCompileTimeError | 15 core_runtime_types_static_test: MissingCompileTimeError |
| 16 string_static_test: MissingCompileTimeError | 16 string_static_test: MissingCompileTimeError |
| 17 | 17 |
| 18 [ $compiler == dart2analyzer && !$strong ] |
| 19 symbol_reserved_word_test/05: MissingCompileTimeError # Issue 30245 |
| 20 symbol_test/04: MissingCompileTimeError # Issue 30245 |
| 21 |
| 18 [ $compiler == dart2js && $fast_startup ] | 22 [ $compiler == dart2js && $fast_startup ] |
| 19 apply3_test: Fail # mirrors not supported | 23 apply3_test: Fail # mirrors not supported |
| 20 | 24 |
| 21 [ $compiler == precompiler ] | 25 [ $compiler == precompiler ] |
| 22 apply3_test: SkipByDesign | 26 apply3_test: SkipByDesign |
| 23 big_integer_huge_mul_vm_test: Pass, Timeout # --no_intrinsify | 27 big_integer_huge_mul_vm_test: Pass, Timeout # --no_intrinsify |
| 24 | 28 |
| 25 [ $compiler == dartdevc && $runtime != none ] | 29 [ $compiler == dartdevc && $runtime != none ] |
| 26 apply2_test: RuntimeError # Issue 29921 | 30 apply2_test: RuntimeError # Issue 29921 |
| 27 apply3_test: RuntimeError # Issue 29921 | 31 apply3_test: RuntimeError # Issue 29921 |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 symbol_reserved_word_test/06: RuntimeError # Issue 27394 | 157 symbol_reserved_word_test/06: RuntimeError # Issue 27394 |
| 154 symbol_reserved_word_test/09: RuntimeError # Issue 27394 | 158 symbol_reserved_word_test/09: RuntimeError # Issue 27394 |
| 155 symbol_reserved_word_test/12: RuntimeError # Issue 27394 | 159 symbol_reserved_word_test/12: RuntimeError # Issue 27394 |
| 156 symbol_test/none: RuntimeError # Issue 27394 | 160 symbol_test/none: RuntimeError # Issue 27394 |
| 157 | 161 |
| 158 [ $compiler == none && $runtime == vm ] | 162 [ $compiler == none && $runtime == vm ] |
| 159 string_static_test: MissingCompileTimeError | 163 string_static_test: MissingCompileTimeError |
| 160 | 164 |
| 161 [ $compiler == dart2js && $runtime != none] | 165 [ $compiler == dart2js && $runtime != none] |
| 162 symbol_reserved_word_test/03: RuntimeError # Issue 19972, new Symbol('void') sho
uld be allowed. | 166 symbol_reserved_word_test/03: RuntimeError # Issue 19972, new Symbol('void') sho
uld be allowed. |
| OLD | NEW |