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 # Sections in this file should contain "$runtime == vm". | 5 # Sections in this file should contain "$runtime == vm". |
6 | 6 |
7 # The VM does not implement the Dart 2.0 static type errors yet. | 7 # The VM does not implement the Dart 2.0 static type errors yet. |
8 [ $runtime == vm ] | 8 [ $runtime == vm ] |
9 abstract_beats_arguments_test: MissingCompileTimeError | 9 abstract_beats_arguments_test: MissingCompileTimeError |
10 abstract_exact_selector_test/01: MissingCompileTimeError | 10 abstract_exact_selector_test/01: MissingCompileTimeError |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 call_nonexistent_static_test/06: MissingCompileTimeError | 64 call_nonexistent_static_test/06: MissingCompileTimeError |
65 call_nonexistent_static_test/07: MissingCompileTimeError | 65 call_nonexistent_static_test/07: MissingCompileTimeError |
66 call_nonexistent_static_test/08: MissingCompileTimeError | 66 call_nonexistent_static_test/08: MissingCompileTimeError |
67 call_nonexistent_static_test/09: MissingCompileTimeError | 67 call_nonexistent_static_test/09: MissingCompileTimeError |
68 call_nonexistent_static_test/10: MissingCompileTimeError | 68 call_nonexistent_static_test/10: MissingCompileTimeError |
69 call_through_getter_test/01: MissingCompileTimeError | 69 call_through_getter_test/01: MissingCompileTimeError |
70 call_through_getter_test/02: MissingCompileTimeError | 70 call_through_getter_test/02: MissingCompileTimeError |
71 call_type_literal_test/01: MissingCompileTimeError | 71 call_type_literal_test/01: MissingCompileTimeError |
72 cast_test/04: MissingCompileTimeError | 72 cast_test/04: MissingCompileTimeError |
73 cast_test/05: MissingCompileTimeError | 73 cast_test/05: MissingCompileTimeError |
| 74 checked_null_test/01: MissingCompileTimeError |
| 75 checked_setter2_test: MissingCompileTimeError |
| 76 checked_setter3_test/01: MissingCompileTimeError |
| 77 checked_setter3_test/02: MissingCompileTimeError |
| 78 checked_setter3_test/03: MissingCompileTimeError |
| 79 generic_constructor_mixin_test/01: MissingCompileTimeError |
| 80 generic_constructor_mixin2_test/01: MissingCompileTimeError |
| 81 generic_constructor_mixin3_test/01: MissingCompileTimeError |
| 82 typevariable_substitution2_test/02: MissingCompileTimeError |
74 | 83 |
75 # The VM and does not implement the Dart 2.0 runtime checks yet unless | 84 # The VM and does not implement the Dart 2.0 runtime checks yet unless |
76 # --checked is explicitly passed). | 85 # --checked is explicitly passed). |
77 [ $runtime == vm && !$checked ] | 86 [ $runtime == vm && !$checked ] |
78 bool_check_test: RuntimeError | 87 bool_check_test: RuntimeError |
79 bool_condition_check_test: RuntimeError | 88 bool_condition_check_test: RuntimeError |
| 89 function_subtype_inline2_test: RuntimeError |
80 | 90 |
81 # The VM doesn't enforce that potentially const expressions are actually | 91 # The VM doesn't enforce that potentially const expressions are actually |
82 # const expressions when the constructor is called with `const`. | 92 # const expressions when the constructor is called with `const`. |
83 [ $runtime == vm && $compiler == none && $checked ] | 93 [ $runtime == vm && $compiler == none && $checked ] |
84 assert_initializer_test/4*: MissingCompileTimeError # Issue 392. | 94 assert_initializer_test/4*: MissingCompileTimeError # Issue 392. |
85 | 95 |
86 [ $compiler == dartk && $runtime == vm ] | 96 [ $compiler == dartk && $runtime == vm ] |
87 arithmetic2_test: RuntimeError # Throws CastError instead of TypeError | 97 arithmetic2_test: RuntimeError # Throws CastError instead of TypeError |
88 | 98 |
89 [ $compiler == none && $runtime == vm && !$checked ] | 99 [ $compiler == none && $runtime == vm && !$checked ] |
90 assertion_initializer_const_error2_test/cc02: MissingCompileTimeError | 100 assertion_initializer_const_error2_test/cc02: MissingCompileTimeError |
91 assertion_initializer_const_error_test/01: MissingCompileTimeError | 101 assertion_initializer_const_error_test/01: MissingCompileTimeError |
92 assertion_initializer_const_function_error_test/01: MissingCompileTimeError | 102 assertion_initializer_const_function_error_test/01: MissingCompileTimeError |
93 | 103 |
94 [ $compiler == app_jit && $runtime == vm && !$checked ] | 104 [ $compiler == app_jit && $runtime == vm && !$checked ] |
95 assertion_initializer_const_error2_test/cc02: MissingCompileTimeError | 105 assertion_initializer_const_error2_test/cc02: MissingCompileTimeError |
96 assertion_initializer_const_error_test/01: MissingCompileTimeError | 106 assertion_initializer_const_error_test/01: MissingCompileTimeError |
97 assertion_initializer_const_function_error_test/01: MissingCompileTimeError | 107 assertion_initializer_const_function_error_test/01: MissingCompileTimeError |
OLD | NEW |