| 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 | 8 splay_tree_test/01: MissingCompileTimeError |
| 9 splay_tree_test/02: MissingCompileTimeError | 9 splay_tree_test/02: MissingCompileTimeError |
| 10 string_base_vm_static_test: MissingCompileTimeError | 10 string_base_vm_static_test: MissingCompileTimeError |
| 11 string_replace_static_test: MissingCompileTimeError | 11 string_replace_static_test: MissingCompileTimeError |
| 12 string_static_test: MissingCompileTimeError | 12 string_static_test: MissingCompileTimeError |
| 13 | 13 |
| 14 [ !$strong && $compiler != dartdevc && $checked ] | 14 [ !$strong && $compiler != dartdevc && $checked ] |
| 15 core_runtime_types_static_test: MissingCompileTimeError | 15 core_runtime_types_static_test: MissingCompileTimeError |
| 16 splay_tree_test/01: MissingCompileTimeError | 16 splay_tree_test/01: MissingCompileTimeError |
| 17 splay_tree_test/02: MissingCompileTimeError | 17 splay_tree_test/02: MissingCompileTimeError |
| 18 string_base_vm_static_test: MissingCompileTimeError | 18 string_base_vm_static_test: MissingCompileTimeError |
| 19 string_replace_static_test: MissingCompileTimeError | 19 string_replace_static_test: MissingCompileTimeError |
| 20 string_static_test: MissingCompileTimeError | 20 string_static_test: MissingCompileTimeError |
| 21 | 21 |
| 22 [ (!$checked && $runtime == vm) || $compiler == dart2js || $compiler == precomp
iler ] | 22 [ (!$checked && $runtime == vm) || (!$checked && $compiler == dart2js) || $compi
ler == precompiler ] |
| 23 int_parse_radix_test/badTypes: RuntimeError # wrong exception returned | 23 int_parse_radix_test/badTypes: RuntimeError # wrong exception returned |
| 24 | 24 |
| 25 [ !$strong && !$checked ] | 25 [ !$strong && !$checked ] |
| 26 core_runtime_types_static_test: MissingCompileTimeError | 26 core_runtime_types_static_test: MissingCompileTimeError |
| 27 splay_tree_test/01: MissingCompileTimeError | 27 splay_tree_test/01: MissingCompileTimeError |
| 28 splay_tree_test/02: MissingCompileTimeError | 28 splay_tree_test/02: MissingCompileTimeError |
| 29 string_base_vm_static_test: MissingCompileTimeError | 29 string_base_vm_static_test: MissingCompileTimeError |
| 30 string_replace_static_test: MissingCompileTimeError | 30 string_replace_static_test: MissingCompileTimeError |
| 31 string_static_test: MissingCompileTimeError | 31 string_static_test: MissingCompileTimeError |
| 32 | 32 |
| (...skipping 993 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1026 iterable_element_at_test/static: Pass | 1026 iterable_element_at_test/static: Pass |
| 1027 | 1027 |
| 1028 [ $compiler == dart2analyzer && $strong ] | 1028 [ $compiler == dart2analyzer && $strong ] |
| 1029 int_parse_radix_bad_handler_test: Pass | 1029 int_parse_radix_bad_handler_test: Pass |
| 1030 | 1030 |
| 1031 [ $compiler == dart2analyzer && $strong && $checked ] | 1031 [ $compiler == dart2analyzer && $strong && $checked ] |
| 1032 iterable_fold_test/01: CompileTimeError | 1032 iterable_fold_test/01: CompileTimeError |
| 1033 | 1033 |
| 1034 [ $compiler == dart2analyzer && $checked && !$strong ] | 1034 [ $compiler == dart2analyzer && $checked && !$strong ] |
| 1035 iterable_fold_test/01: Pass | 1035 iterable_fold_test/01: Pass |
| 1036 |
| 1037 [ $compiler == dart2analyzer && $strong && !$checked ] |
| 1038 iterable_fold_test/01: CompileTimeError |
| OLD | NEW |