| 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 # Fails intentionally | 10 package/invalid_uri_test: Fail, OK # Fails intentionally |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 int_array_load_elimination_test: Skip # This is a VM test | 107 int_array_load_elimination_test: Skip # This is a VM test |
| 108 medium_integer_test: Fail, OK # Test fails with JS number semantics: issue 1533. | 108 medium_integer_test: Fail, OK # Test fails with JS number semantics: issue 1533. |
| 109 io/process_exit_negative_test: Fail, OK # relies on a static error that is a war
ning now. | 109 io/process_exit_negative_test: Fail, OK # relies on a static error that is a war
ning now. |
| 110 package/package_isolate_test: Skip # spawnUri does not work in dart2js. See issu
e 3051 | 110 package/package_isolate_test: Skip # spawnUri does not work in dart2js. See issu
e 3051 |
| 111 debugger/*: Skip # Do not run standalone vm debugger tests with dart2js. | 111 debugger/*: Skip # Do not run standalone vm debugger tests with dart2js. |
| 112 left_shift_bit_and_op_test: Skip # Integers exceed dart2js precision. | 112 left_shift_bit_and_op_test: Skip # Integers exceed dart2js precision. |
| 113 pow_test: Skip # Precision > 53 bits. | 113 pow_test: Skip # Precision > 53 bits. |
| 114 http_launch_test: Skip | 114 http_launch_test: Skip |
| 115 53bit_overflow_test: Skip | 115 53bit_overflow_test: Skip |
| 116 53bit_overflow_literal_test: Skip | 116 53bit_overflow_literal_test: Skip |
| 117 oom_error_stacktrace_test: Fail, OK # (OOM on JS may produce a stacktrace). |
| 117 vmservice/*: Skip # Do not run standalone vm service tests with dart2js. | 118 vmservice/*: Skip # Do not run standalone vm service tests with dart2js. |
| 118 | 119 |
| 119 | 120 |
| 120 [ $compiler == dart2js && $jscl ] | 121 [ $compiler == dart2js && $jscl ] |
| 121 assert_test: Fail, OK # Assumes unspecified fields on the AssertionError. | 122 assert_test: Fail, OK # Assumes unspecified fields on the AssertionError. |
| 122 byte_array_test: Fail, OK # ByteArray | 123 byte_array_test: Fail, OK # ByteArray |
| 123 deoptimization_test: Fail, OK # Requires bigint. | 124 deoptimization_test: Fail, OK # Requires bigint. |
| 124 out_of_memory_test: Fail, OK # d8 handles much larger arrays than Dart VM. | 125 out_of_memory_test: Fail, OK # d8 handles much larger arrays than Dart VM. |
| 125 io/options_test: Fail, OK # Cannot pass options to d8. | 126 io/options_test: Fail, OK # Cannot pass options to d8. |
| 126 | 127 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 137 | 138 |
| 138 [ $compiler == dart2dart ] | 139 [ $compiler == dart2dart ] |
| 139 # Skip until we stabilize language tests. | 140 # Skip until we stabilize language tests. |
| 140 *: Skip | 141 *: Skip |
| 141 | 142 |
| 142 [ $arch == arm ] | 143 [ $arch == arm ] |
| 143 *: Skip # Shared libraries problem. | 144 *: Skip # Shared libraries problem. |
| 144 | 145 |
| 145 [ $arch == simarm ] | 146 [ $arch == simarm ] |
| 146 out_of_memory_test: Skip # passes on Mac, crashes on Linux | 147 out_of_memory_test: Skip # passes on Mac, crashes on Linux |
| 148 oom_error_stacktrace_test: Skip # Fails on Linux |
| 147 io/web_socket_ping_test: Skip # TODO(ajohnsen): Timeout issue | 149 io/web_socket_ping_test: Skip # TODO(ajohnsen): Timeout issue |
| 148 | 150 |
| 149 [ $arch == mips ] | 151 [ $arch == mips ] |
| 150 *: Skip | 152 *: Skip |
| 151 | 153 |
| 152 [ $arch == simmips ] | 154 [ $arch == simmips ] |
| 153 io/file_fuzz_test: Pass, Timeout | 155 io/file_fuzz_test: Pass, Timeout |
| 154 out_of_memory_test: Skip # passes on Mac, crashes on Linux | 156 out_of_memory_test: Skip # passes on Mac, crashes on Linux |
| 157 oom_error_stacktrace_test: Skip # Fails on Linux |
| 155 io/web_socket_ping_test: Skip # TODO(ajohnsen): Timeout issue | 158 io/web_socket_ping_test: Skip # TODO(ajohnsen): Timeout issue |
| OLD | NEW |