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 27 matching lines...) Expand all Loading... |
38 # Non-contractive types are not supported in the vm. | 38 # Non-contractive types are not supported in the vm. |
39 cyclic_type_test/02: Fail, OK | 39 cyclic_type_test/02: Fail, OK |
40 cyclic_type_test/04: Fail, OK | 40 cyclic_type_test/04: Fail, OK |
41 cyclic_type2_test: Fail, OK | 41 cyclic_type2_test: Fail, OK |
42 least_upper_bound_expansive_test/*: Fail, OK | 42 least_upper_bound_expansive_test/*: Fail, OK |
43 | 43 |
44 async_star_regression_2238_test: CompileTimeError, RuntimeError # drt only runti
me-errs. | 44 async_star_regression_2238_test: CompileTimeError, RuntimeError # drt only runti
me-errs. |
45 async_star_cancel_while_paused_test: RuntimeError | 45 async_star_cancel_while_paused_test: RuntimeError |
46 async_star_await_pauses_test: Skip # Times out. Issue 23996 | 46 async_star_await_pauses_test: Skip # Times out. Issue 23996 |
47 | 47 |
48 library_env_test: RuntimeError | |
49 | |
50 accessor_conflict_export2_test: RuntimeError # Issue 25625 | 48 accessor_conflict_export2_test: RuntimeError # Issue 25625 |
51 accessor_conflict_import2_test: RuntimeError # Issue 25625 | 49 accessor_conflict_import2_test: RuntimeError # Issue 25625 |
52 accessor_conflict_import_prefixed2_test: RuntimeError # Issue 25625 | 50 accessor_conflict_import_prefixed2_test: RuntimeError # Issue 25625 |
53 accessor_conflict_import_prefixed_test: RuntimeError # Issue 25625 | 51 accessor_conflict_import_prefixed_test: RuntimeError # Issue 25625 |
54 | 52 |
55 [ ($compiler == none || $compiler == precompiler || $compiler == dart2app) && ($
runtime == vm || $runtime == dart_precompiled || $runtime == dart_product) ] | 53 [ ($compiler == none || $compiler == precompiler || $compiler == dart2app) && ($
runtime == vm || $runtime == dart_precompiled || $runtime == dart_product) ] |
56 | 54 |
57 class_keyword_test/02: MissingCompileTimeError # Issue 13627 | 55 class_keyword_test/02: MissingCompileTimeError # Issue 13627 |
58 unicode_bom_test: Fail # Issue 16067 | 56 unicode_bom_test: Fail # Issue 16067 |
59 vm/debug_break_enabled_vm_test/01: Crash, OK # Expected to hit breakpoint. | 57 vm/debug_break_enabled_vm_test/01: Crash, OK # Expected to hit breakpoint. |
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
190 deopt_inlined_function_lazy_test: Pass, Crash # Incompatible flag: --deoptimize-
alot | 188 deopt_inlined_function_lazy_test: Pass, Crash # Incompatible flag: --deoptimize-
alot |
191 | 189 |
192 [ $runtime == dart_product ] | 190 [ $runtime == dart_product ] |
193 # Deferred loading happens eagerly (not sure why this works on precompiled code)
. | 191 # Deferred loading happens eagerly (not sure why this works on precompiled code)
. |
194 deferred_static_seperate_test: Skip | 192 deferred_static_seperate_test: Skip |
195 deferred_constraints_type_annotation_test/new_before_load: Skip | 193 deferred_constraints_type_annotation_test/new_before_load: Skip |
196 regress_22443_test: Skip | 194 regress_22443_test: Skip |
197 | 195 |
198 [ $runtime == vm && $mode == product ] | 196 [ $runtime == vm && $mode == product ] |
199 vm/type_vm_test: Fail,OK # Expects exact type name. | 197 vm/type_vm_test: Fail,OK # Expects exact type name. |
| 198 |
| 199 [ $compiler == none && $browser ] |
| 200 # The following tests are supposed to fail. |
| 201 library_env_test/has_io_support: RuntimeError, OK |
| 202 library_env_test/has_no_html_support: RuntimeError, OK |
| 203 library_env_test/has_no_mirror_support: RuntimeError, OK |
| 204 |
| 205 [ $compiler == none && $browser != true ] |
| 206 # The following tests are supposed to fail. |
| 207 library_env_test/has_html_support: RuntimeError, OK |
| 208 library_env_test/has_no_io_support: RuntimeError, OK |
| 209 library_env_test/has_no_mirror_support: RuntimeError, OK |
OLD | NEW |