| 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 splay_tree_test/01: MissingCompileTimeError |
| 9 splay_tree_test/02: MissingCompileTimeError |
| 8 string_base_vm_static_test: MissingCompileTimeError | 10 string_base_vm_static_test: MissingCompileTimeError |
| 9 string_replace_static_test: MissingCompileTimeError | 11 string_replace_static_test: MissingCompileTimeError |
| 10 string_static_test: MissingCompileTimeError | 12 string_static_test: MissingCompileTimeError |
| 11 | 13 |
| 12 [ !$strong && $compiler != dartdevc && $checked ] | 14 [ !$strong && $compiler != dartdevc && $checked ] |
| 13 core_runtime_types_static_test: MissingCompileTimeError | 15 core_runtime_types_static_test: MissingCompileTimeError |
| 16 splay_tree_test/01: MissingCompileTimeError |
| 17 splay_tree_test/02: MissingCompileTimeError |
| 14 string_base_vm_static_test: MissingCompileTimeError | 18 string_base_vm_static_test: MissingCompileTimeError |
| 15 string_replace_static_test: MissingCompileTimeError | 19 string_replace_static_test: MissingCompileTimeError |
| 16 string_static_test: MissingCompileTimeError | 20 string_static_test: MissingCompileTimeError |
| 17 | 21 |
| 18 [ !$strong && !$checked ] | 22 [ !$strong && !$checked ] |
| 19 core_runtime_types_static_test: MissingCompileTimeError | 23 core_runtime_types_static_test: MissingCompileTimeError |
| 24 splay_tree_test/01: MissingCompileTimeError |
| 25 splay_tree_test/02: MissingCompileTimeError |
| 20 string_base_vm_static_test: MissingCompileTimeError | 26 string_base_vm_static_test: MissingCompileTimeError |
| 21 string_replace_static_test: MissingCompileTimeError | 27 string_replace_static_test: MissingCompileTimeError |
| 22 string_static_test: MissingCompileTimeError | 28 string_static_test: MissingCompileTimeError |
| 23 | 29 |
| 24 [ $compiler == dart2analyzer && !$strong ] | 30 [ $compiler == dart2analyzer && !$strong ] |
| 25 symbol_reserved_word_test/05: MissingCompileTimeError # Issue 30245 | 31 symbol_reserved_word_test/05: MissingCompileTimeError # Issue 30245 |
| 26 symbol_test/04: MissingCompileTimeError # Issue 30245 | 32 symbol_test/04: MissingCompileTimeError # Issue 30245 |
| 27 | 33 |
| 28 [ $compiler == dart2js && $fast_startup ] | 34 [ $compiler == dart2js && $fast_startup ] |
| 29 apply3_test: Fail # mirrors not supported | 35 apply3_test: Fail # mirrors not supported |
| (...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 366 throw_half_surrogate_pair_test/02: Crash | 372 throw_half_surrogate_pair_test/02: Crash |
| 367 toInt_test: Crash | 373 toInt_test: Crash |
| 368 type_hashcode_test: Crash | 374 type_hashcode_test: Crash |
| 369 unicode_test: Crash | 375 unicode_test: Crash |
| 370 | 376 |
| 371 [ $compiler == dart2js && $dart2js_with_kernel && $use_sdk ] | 377 [ $compiler == dart2js && $dart2js_with_kernel && $use_sdk ] |
| 372 *: Skip # Issue 29626 | 378 *: Skip # Issue 29626 |
| 373 | 379 |
| 374 [$arch == simdbc || $arch == simdbc64] | 380 [$arch == simdbc || $arch == simdbc64] |
| 375 regexp/stack-overflow_test: RuntimeError, OK # Smaller limit with irregex interp
reter | 381 regexp/stack-overflow_test: RuntimeError, OK # Smaller limit with irregex interp
reter |
| 382 |
| 383 [ $compiler == dart2js && $runtime != none && !$checked ] |
| 384 splay_tree_from_iterable_test: RuntimeError |
| 385 |
| 386 [ ($compiler == none || $compiler == app_jit) && $runtime == vm && !$checked ] |
| 387 splay_tree_from_iterable_test: RuntimeError |
| OLD | NEW |