| OLD | NEW |
| 1 # Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2013, 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 # WARNING: | 5 # WARNING: |
| 6 # Tests using the multitest feature where failure is expected should *also* be | 6 # Tests using the multitest feature where failure is expected should *also* be |
| 7 # listed in tests/lib/analyzer/analyze_tests.status without the "standalone" | 7 # listed in tests/lib/analyzer/analyze_tests.status without the "standalone" |
| 8 # prefix. | 8 # prefix. |
| 9 | 9 |
| 10 package/invalid_uri_test: Fail, OK # CompileTimeErrors intentionally | 10 package/invalid_uri_test: Fail, OK # CompileTimeErrors intentionally |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 | 112 |
| 113 [ $runtime == vm && $arch == ia32] | 113 [ $runtime == vm && $arch == ia32] |
| 114 precompilation_test: Skip # Not expected to pass on ia32. | 114 precompilation_test: Skip # Not expected to pass on ia32. |
| 115 precompilation_dart2js_test: Skip # Not expected to pass on ia32. | 115 precompilation_dart2js_test: Skip # Not expected to pass on ia32. |
| 116 noopt_test: Skip # Not expected to pass on ia32. | 116 noopt_test: Skip # Not expected to pass on ia32. |
| 117 | 117 |
| 118 [ $runtime == vm && $arch == arm] | 118 [ $runtime == vm && $arch == arm] |
| 119 precompilation_test: Skip # Issue 24427 | 119 precompilation_test: Skip # Issue 24427 |
| 120 precompilation_dart2js_test: Skip # Issue 24427 | 120 precompilation_dart2js_test: Skip # Issue 24427 |
| 121 | 121 |
| 122 [ $runtime == vm && $arch == mips] |
| 123 precompilation_dart2js_test: SkipSlow |
| 124 |
| 122 [ $compiler == dart2js && $jscl ] | 125 [ $compiler == dart2js && $jscl ] |
| 123 assert_test: RuntimeError, OK # Assumes unspecified fields on the AssertionError
. | 126 assert_test: RuntimeError, OK # Assumes unspecified fields on the AssertionError
. |
| 124 deoptimization_test: RuntimeError, OK # Requires bigint. | 127 deoptimization_test: RuntimeError, OK # Requires bigint. |
| 125 out_of_memory_test: RuntimeError, OK # d8 handles much larger arrays than Dart V
M. | 128 out_of_memory_test: RuntimeError, OK # d8 handles much larger arrays than Dart V
M. |
| 126 io/arguments_test: CompileTimeError, OK # Cannot pass arguments to d8. | 129 io/arguments_test: CompileTimeError, OK # Cannot pass arguments to d8. |
| 127 | 130 |
| 128 [ $compiler == dart2js && $runtime == none ] | 131 [ $compiler == dart2js && $runtime == none ] |
| 129 io/arguments_test: Fail # DartOptions not supported by dart2js, and issue 14200. | 132 io/arguments_test: Fail # DartOptions not supported by dart2js, and issue 14200. |
| 130 medium_integer_test: Pass # The test only fails at runtime, not at compilation. | 133 medium_integer_test: Pass # The test only fails at runtime, not at compilation. |
| 131 oom_error_stacktrace_test: Pass # The test only fails at runtime. | 134 oom_error_stacktrace_test: Pass # The test only fails at runtime. |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 210 [ $runtime == vm ] | 213 [ $runtime == vm ] |
| 211 # Failures in secure networking while NSS is replaced with BoringSSL | 214 # Failures in secure networking while NSS is replaced with BoringSSL |
| 212 io/https_client_certificate_test: RuntimeError # Issue 24070 | 215 io/https_client_certificate_test: RuntimeError # Issue 24070 |
| 213 io/secure_socket_renegotiate_test: RuntimeError | 216 io/secure_socket_renegotiate_test: RuntimeError |
| 214 io/secure_socket_bad_data_test: RuntimeError # An error in a secure connection
just puts a READ_CLOSED on the stream, rather than signaling an error on the str
eam. | 217 io/secure_socket_bad_data_test: RuntimeError # An error in a secure connection
just puts a READ_CLOSED on the stream, rather than signaling an error on the str
eam. |
| 215 | 218 |
| 216 [ $noopt ] | 219 [ $noopt ] |
| 217 map_literal_oom_test: Pass, Crash # Issue 24678 | 220 map_literal_oom_test: Pass, Crash # Issue 24678 |
| 218 javascript*: SkipByDesign # JS overflow flag unsupported | 221 javascript*: SkipByDesign # JS overflow flag unsupported |
| 219 io/web_socket_test: Pass, RuntimeError # Issue 24674 | 222 io/web_socket_test: Pass, RuntimeError # Issue 24674 |
| OLD | NEW |