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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 http_launch_test: Skip | 96 http_launch_test: Skip |
97 javascript_int_overflow_test: Skip | 97 javascript_int_overflow_test: Skip |
98 javascript_int_overflow_literal_test: Skip | 98 javascript_int_overflow_literal_test: Skip |
99 oom_error_stacktrace_test: RuntimeError, OK # (OOM on JS may produce a stacktrac
e). | 99 oom_error_stacktrace_test: RuntimeError, OK # (OOM on JS may produce a stacktrac
e). |
100 vmservice/*: Skip # Do not run standalone vm service tests with dart2js. | 100 vmservice/*: Skip # Do not run standalone vm service tests with dart2js. |
101 issue14236_test: Skip # dart2js does not deal with Script snapshots. | 101 issue14236_test: Skip # dart2js does not deal with Script snapshots. |
102 javascript_compatibility_errors_test: Skip | 102 javascript_compatibility_errors_test: Skip |
103 javascript_compatibility_warnings_test: Skip | 103 javascript_compatibility_warnings_test: Skip |
104 unboxed_int_converter_test: Skip | 104 unboxed_int_converter_test: Skip |
105 pair_location_remapping_test: Skip | 105 pair_location_remapping_test: Skip |
| 106 precompilation_test: Skip # VM only test. |
| 107 |
| 108 [ $runtime == vm && $arch == ia32] |
| 109 precompilation_test: Fail # Not expected to pass on ia32. |
106 | 110 |
107 [ $compiler == dart2js && $jscl ] | 111 [ $compiler == dart2js && $jscl ] |
108 assert_test: RuntimeError, OK # Assumes unspecified fields on the AssertionError
. | 112 assert_test: RuntimeError, OK # Assumes unspecified fields on the AssertionError
. |
109 deoptimization_test: RuntimeError, OK # Requires bigint. | 113 deoptimization_test: RuntimeError, OK # Requires bigint. |
110 out_of_memory_test: RuntimeError, OK # d8 handles much larger arrays than Dart V
M. | 114 out_of_memory_test: RuntimeError, OK # d8 handles much larger arrays than Dart V
M. |
111 io/arguments_test: CompileTimeError, OK # Cannot pass arguments to d8. | 115 io/arguments_test: CompileTimeError, OK # Cannot pass arguments to d8. |
112 | 116 |
113 [ $compiler == dart2js && $runtime == none ] | 117 [ $compiler == dart2js && $runtime == none ] |
114 io/arguments_test: Fail # DartOptions not supported by dart2js, and issue 14200. | 118 io/arguments_test: Fail # DartOptions not supported by dart2js, and issue 14200. |
115 medium_integer_test: Pass # The test only fails at runtime, not at compilation. | 119 medium_integer_test: Pass # The test only fails at runtime, not at compilation. |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
192 [ $runtime == vm ] | 196 [ $runtime == vm ] |
193 # Failures in secure networking while NSS is replaced with BoringSSL | 197 # Failures in secure networking while NSS is replaced with BoringSSL |
194 io/https_client_certificate_test: RuntimeError # Issue 24070 | 198 io/https_client_certificate_test: RuntimeError # Issue 24070 |
195 io/secure_server_client_certificate_test: RuntimeError # Issue 24069 | 199 io/secure_server_client_certificate_test: RuntimeError # Issue 24069 |
196 io/secure_server_client_no_certificate_test: RuntimeError # Issue 24069 | 200 io/secure_server_client_no_certificate_test: RuntimeError # Issue 24069 |
197 io/secure_socket_renegotiate_test: RuntimeError | 201 io/secure_socket_renegotiate_test: RuntimeError |
198 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. | 202 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. |
199 | 203 |
200 [ $compiler == dart2js && $cps_ir ] | 204 [ $compiler == dart2js && $cps_ir ] |
201 priority_queue_stress_test: RuntimeError # Cannot read property 'length' of unde
fined | 205 priority_queue_stress_test: RuntimeError # Cannot read property 'length' of unde
fined |
OLD | NEW |