OLD | NEW |
1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2012, 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 # This directory contains tests that are intended to show the | 5 # This directory contains tests that are intended to show the |
6 # current state of the language. | 6 # current state of the language. |
7 | 7 |
8 [ ($compiler == none || $compiler == precompiler || $compiler == dart2app) ] | 8 [ ($compiler == none || $compiler == precompiler || $compiler == dart2app) ] |
9 tearoff_constructor_basic_test: Skip # Crashes in checked mode -- hausner invest
igating | 9 tearoff_constructor_basic_test: Skip # Crashes in checked mode -- hausner invest
igating |
10 | 10 |
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
150 super_call4_test: SkipByDesign | 150 super_call4_test: SkipByDesign |
151 super_getter_setter_test: SkipByDesign | 151 super_getter_setter_test: SkipByDesign |
152 vm/reflect_core_vm_test: SkipByDesign | 152 vm/reflect_core_vm_test: SkipByDesign |
153 | 153 |
154 [ ($noopt || $compiler == precompiler || $compiler == dart2app) ] | 154 [ ($noopt || $compiler == precompiler || $compiler == dart2app) ] |
155 # Deferred loading happens eagerly | 155 # Deferred loading happens eagerly |
156 regress_23408_test: RuntimeError | 156 regress_23408_test: RuntimeError |
157 deferred_inheritance_constraints_test: Skip | 157 deferred_inheritance_constraints_test: Skip |
158 deferred_load_constants_test: Skip # multitest gets confused | 158 deferred_load_constants_test: Skip # multitest gets confused |
159 tearoff_basic_test: RuntimeError, Crash # Conflicting flag. | 159 tearoff_basic_test: RuntimeError, Crash # Conflicting flag. |
160 deferred_global_test: RuntimeError # Issue 25845 | |
161 | 160 |
162 vm/type_vm_test: RuntimeError # Expects line and column numbers | 161 vm/type_vm_test: RuntimeError # Expects line and column numbers |
163 vm/type_cast_vm_test: RuntimeError # Line number mismatch. | 162 vm/type_cast_vm_test: RuntimeError # Line number mismatch. |
164 | 163 |
| 164 issue13474_test: SkipByDesign # Requires checked mode. |
| 165 assertion_test: SkipByDesign # Requires checked mode. |
| 166 named_parameters_type_test/01: SkipByDesign # Requires checked mode. |
| 167 named_parameters_type_test/02: SkipByDesign # Requires checked mode. |
| 168 named_parameters_type_test/03: SkipByDesign # Requires checked mode. |
| 169 type_checks_in_factory_method_test: SkipByDesign # Requires checked mode. |
| 170 positional_parameters_type_test/01: SkipByDesign # Requires checked mode. |
| 171 positional_parameters_type_test/02: SkipByDesign # Requires checked mode. |
| 172 list_literal4_test: SkipByDesign # Requires checked mode. |
| 173 generic_test: SkipByDesign # Requires checked mode. |
| 174 map_literal4_test: SkipByDesign # Requires checked mode. |
| 175 |
| 176 |
165 [ $runtime == dart_precompiled ] | 177 [ $runtime == dart_precompiled ] |
166 deferred_global_test: RuntimeError # Tries to produce a stack trace. | 178 deferred_global_test: RuntimeError # Tries to produce a stack trace. |
167 ct_const2_test: Pass, Crash # Incompatible flag --compile_all | 179 ct_const2_test: Pass, Crash # Incompatible flag --compile_all |
168 hello_dart_test: Pass, Crash # Incompatible flag --compile_all | 180 hello_dart_test: Pass, Crash # Incompatible flag --compile_all |
169 | 181 |
170 implicit_closure_test: Pass, Crash # --use_slow_path | 182 implicit_closure_test: Pass, Crash # --use_slow_path |
171 | 183 |
172 deopt_inlined_function_lazy_test: Pass, Crash # Incompatible flag: --deoptimize-
alot | 184 deopt_inlined_function_lazy_test: Pass, Crash # Incompatible flag: --deoptimize-
alot |
173 | 185 |
174 [ $runtime == dart_product ] | 186 [ $runtime == dart_product ] |
(...skipping 15 matching lines...) Expand all Loading... |
190 library_env_test/has_html_support: RuntimeError, OK | 202 library_env_test/has_html_support: RuntimeError, OK |
191 library_env_test/has_no_io_support: RuntimeError, OK | 203 library_env_test/has_no_io_support: RuntimeError, OK |
192 | 204 |
193 [ $compiler == none && $noopt == false && $mode != product ] | 205 [ $compiler == none && $noopt == false && $mode != product ] |
194 # The following tests are supposed to fail. | 206 # The following tests are supposed to fail. |
195 library_env_test/has_no_mirror_support: RuntimeError, OK | 207 library_env_test/has_no_mirror_support: RuntimeError, OK |
196 | 208 |
197 [ $noopt || $compiler == precompiler || $mode == product ] | 209 [ $noopt || $compiler == precompiler || $mode == product ] |
198 # The following tests are supposed to fail. | 210 # The following tests are supposed to fail. |
199 library_env_test/has_mirror_support: RuntimeError, OK | 211 library_env_test/has_mirror_support: RuntimeError, OK |
OLD | NEW |