| 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 || $co
mpiler == dart2appjit) ] | 8 [ ($compiler == none || $compiler == precompiler || $compiler == dart2app || $co
mpiler == dart2appjit) ] |
| 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 generic_methods_type_expression_test: RuntimeError # Issue 25869 | 10 generic_methods_type_expression_test: RuntimeError # Issue 25869 |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 large_class_declaration_test: SkipSlow # Times out. Issue 20352 | 134 large_class_declaration_test: SkipSlow # Times out. Issue 20352 |
| 135 | 135 |
| 136 [ ($runtime == vm || $runtime == dart_precompiled || $runtime == dart_app) && $a
rch == arm64 ] | 136 [ ($runtime == vm || $runtime == dart_precompiled || $runtime == dart_app) && $a
rch == arm64 ] |
| 137 large_class_declaration_test: SkipSlow # Uses too much memory. | 137 large_class_declaration_test: SkipSlow # Uses too much memory. |
| 138 | 138 |
| 139 [ $compiler == none && ($runtime == dartium || $runtime == drt) && $mode == debu
g ] | 139 [ $compiler == none && ($runtime == dartium || $runtime == drt) && $mode == debu
g ] |
| 140 large_class_declaration_test: SkipSlow # Times out. Issue 20352 | 140 large_class_declaration_test: SkipSlow # Times out. Issue 20352 |
| 141 | 141 |
| 142 [ ($runtime == vm || $runtime == dart_precompiled || $runtime == dart_app) && (
$arch == simarm || $arch == arm || $arch == simarmv6 || $arch == armv6 || $arch
== simarmv5te || $arch == armv5te || $arch == simarm64 || $arch == arm64 || $arc
h == simmips || $arch == mips) ] | 142 [ ($runtime == vm || $runtime == dart_precompiled || $runtime == dart_app) && (
$arch == simarm || $arch == arm || $arch == simarmv6 || $arch == armv6 || $arch
== simarmv5te || $arch == armv5te || $arch == simarm64 || $arch == arm64 || $arc
h == simmips || $arch == mips) ] |
| 143 vm/load_to_load_unaligned_forwarding_vm_test: Pass, Crash # Unaligned offset. Is
sue 22151 | 143 vm/load_to_load_unaligned_forwarding_vm_test: Pass, Crash # Unaligned offset. Is
sue 22151 |
| 144 vm/unaligned_float_access_literal_index_test: Pass, Crash # Unaligned offset. Is
sue 22151 |
| 145 vm/unaligned_float_access_literal_index_test: Pass, Crash # Unaligned offset. Is
sue 22151 |
| 146 |
| 144 | 147 |
| 145 [ $compiler == none && ($runtime == dartium || $runtime == drt) ] | 148 [ $compiler == none && ($runtime == dartium || $runtime == drt) ] |
| 146 issue23244_test: Fail # Issue 23244 | 149 issue23244_test: Fail # Issue 23244 |
| 147 | 150 |
| 148 [ ($compiler == none || $compiler == precompiler || $compiler == dart2app || $co
mpiler == dart2appjit) && (($runtime == vm || $runtime == dart_precompiled || $r
untime == dart_app) || $runtime == drt || $runtime == dartium) && $arch == ia32
] | 151 [ ($compiler == none || $compiler == precompiler || $compiler == dart2app || $co
mpiler == dart2appjit) && (($runtime == vm || $runtime == dart_precompiled || $r
untime == dart_app) || $runtime == drt || $runtime == dartium) && $arch == ia32
] |
| 149 vm/regress_24517_test: Pass, Fail # Issue 24517. | 152 vm/regress_24517_test: Pass, Fail # Issue 24517. |
| 150 | 153 |
| 151 [ $compiler == precompiler && $runtime == dart_precompiled ] | 154 [ $compiler == precompiler && $runtime == dart_precompiled ] |
| 152 vm/regress_27671_test: Skip # Unsupported | 155 vm/regress_27671_test: Skip # Unsupported |
| 153 | 156 |
| (...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 301 assert_initializer_test/*: MissingCompileTimeError, OK # asserts shouldn't fail
in unchecked mode. | 304 assert_initializer_test/*: MissingCompileTimeError, OK # asserts shouldn't fail
in unchecked mode. |
| 302 assert_initializer_test/none: pass | 305 assert_initializer_test/none: pass |
| 303 | 306 |
| 304 [$runtime == vm && $compiler == none && $checked] | 307 [$runtime == vm && $compiler == none && $checked] |
| 305 # The VM doesn't enforce that potentially const expressions are actually | 308 # The VM doesn't enforce that potentially const expressions are actually |
| 306 # const expressions when the constructor is called with `const`. | 309 # const expressions when the constructor is called with `const`. |
| 307 assert_initializer_test/4*: MissingCompileTimeError # Issue 392. | 310 assert_initializer_test/4*: MissingCompileTimeError # Issue 392. |
| 308 | 311 |
| 309 [$runtime == vm && $compiler == none] | 312 [$runtime == vm && $compiler == none] |
| 310 duplicate_part_test/01: MissingCompileTimeError # Issue 27516 | 313 duplicate_part_test/01: MissingCompileTimeError # Issue 27516 |
| OLD | NEW |