| 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 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 | 144 |
| 145 [ $compiler == none && ($runtime == dartium || $runtime == drt) ] | 145 [ $compiler == none && ($runtime == dartium || $runtime == drt) ] |
| 146 issue23244_test: Fail # Issue 23244 | 146 issue23244_test: Fail # Issue 23244 |
| 147 | 147 |
| 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
] | 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
] |
| 149 vm/regress_24517_test: Pass, Fail # Issue 24517. | 149 vm/regress_24517_test: Pass, Fail # Issue 24517. |
| 150 | 150 |
| 151 [ $compiler == precompiler && $runtime == dart_precompiled ] |
| 152 vm/regress_27671_test: Skip # Unsupported |
| 153 |
| 151 [ $noopt || $compiler == precompiler ] | 154 [ $noopt || $compiler == precompiler ] |
| 152 # Stacktraces in precompilation omit inlined frames. | 155 # Stacktraces in precompilation omit inlined frames. |
| 153 full_stacktrace1_test: Pass, RuntimeError | 156 full_stacktrace1_test: Pass, RuntimeError |
| 154 full_stacktrace2_test: Pass, RuntimeError | 157 full_stacktrace2_test: Pass, RuntimeError |
| 155 full_stacktrace3_test: Pass, RuntimeError | 158 full_stacktrace3_test: Pass, RuntimeError |
| 156 stack_trace_test: Pass, RuntimeError | 159 stack_trace_test: Pass, RuntimeError |
| 157 stacktrace_rethrow_error_test: Pass, RuntimeError | 160 stacktrace_rethrow_error_test: Pass, RuntimeError |
| 158 stacktrace_rethrow_nonerror_test: Pass, RuntimeError | 161 stacktrace_rethrow_nonerror_test: Pass, RuntimeError |
| 159 stacktrace_test: Pass, RuntimeError | 162 stacktrace_test: Pass, RuntimeError |
| 160 regress_26948_test: Skip # Crashes, regis investigating | 163 regress_26948_test: Skip # Crashes, regis investigating |
| (...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 298 assert_initializer_test/*: MissingCompileTimeError, OK # asserts shouldn't fail
in unchecked mode. | 301 assert_initializer_test/*: MissingCompileTimeError, OK # asserts shouldn't fail
in unchecked mode. |
| 299 assert_initializer_test/none: pass | 302 assert_initializer_test/none: pass |
| 300 | 303 |
| 301 [$runtime == vm && $compiler == none && $checked] | 304 [$runtime == vm && $compiler == none && $checked] |
| 302 # The VM doesn't enforce that potentially const expressions are actually | 305 # The VM doesn't enforce that potentially const expressions are actually |
| 303 # const expressions when the constructor is called with `const`. | 306 # const expressions when the constructor is called with `const`. |
| 304 assert_initializer_test/4*: MissingCompileTimeError # Issue 392. | 307 assert_initializer_test/4*: MissingCompileTimeError # Issue 392. |
| 305 | 308 |
| 306 [$runtime == vm && $compiler == none] | 309 [$runtime == vm && $compiler == none] |
| 307 duplicate_part_test/01: MissingCompileTimeError # Issue 27516 | 310 duplicate_part_test/01: MissingCompileTimeError # Issue 27516 |
| OLD | NEW |