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 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
174 | 174 |
175 [ $runtime == dart_product ] | 175 [ $runtime == dart_product ] |
176 # Deferred loading happens eagerly (not sure why this works on precompiled code)
. | 176 # Deferred loading happens eagerly (not sure why this works on precompiled code)
. |
177 deferred_static_seperate_test: Skip | 177 deferred_static_seperate_test: Skip |
178 deferred_constraints_type_annotation_test/new_before_load: Skip | 178 deferred_constraints_type_annotation_test/new_before_load: Skip |
179 regress_22443_test: Skip | 179 regress_22443_test: Skip |
180 | 180 |
181 [ $runtime == vm && $mode == product ] | 181 [ $runtime == vm && $mode == product ] |
182 vm/type_vm_test: Fail,OK # Expects exact type name. | 182 vm/type_vm_test: Fail,OK # Expects exact type name. |
183 | 183 |
184 [ $compiler == none && $browser ] | 184 [ ($compiler == none || $compiler == precompiler || $compiler == dart2app) && $b
rowser ] |
185 # The following tests are supposed to fail. | 185 # The following tests are supposed to fail. |
186 library_env_test/has_io_support: RuntimeError, OK | 186 library_env_test/has_io_support: RuntimeError, OK |
187 library_env_test/has_no_html_support: RuntimeError, OK | 187 library_env_test/has_no_html_support: RuntimeError, OK |
188 library_env_test/has_no_mirror_support: RuntimeError, OK | |
189 | 188 |
190 [ $compiler == none && $browser != true ] | 189 [ ($compiler == none || $compiler == precompiler || $compiler == dart2app) && $b
rowser != true ] |
191 # The following tests are supposed to fail. | 190 # The following tests are supposed to fail. |
192 library_env_test/has_html_support: RuntimeError, OK | 191 library_env_test/has_html_support: RuntimeError, OK |
193 library_env_test/has_no_io_support: RuntimeError, OK | 192 library_env_test/has_no_io_support: RuntimeError, OK |
| 193 |
| 194 [ $compiler == none && $noopt == false && $mode != product ] |
| 195 # The following tests are supposed to fail. |
194 library_env_test/has_no_mirror_support: RuntimeError, OK | 196 library_env_test/has_no_mirror_support: RuntimeError, OK |
| 197 |
| 198 [ $noopt || $compiler == precompiler || $mode == product ] |
| 199 # The following tests are supposed to fail. |
| 200 library_env_test/has_mirror_support: RuntimeError, OK |
OLD | NEW |