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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 io/directory_non_ascii_test: Pass, Fail | 46 io/directory_non_ascii_test: Pass, Fail |
47 io/process_non_ascii_test: Pass, Fail | 47 io/process_non_ascii_test: Pass, Fail |
48 | 48 |
49 [ $compiler == none && $runtime == drt ] | 49 [ $compiler == none && $runtime == drt ] |
50 typed_data_isolate_test: Skip # This test uses dart:io | 50 typed_data_isolate_test: Skip # This test uses dart:io |
51 io/*: Skip # Don't run tests using dart:io in the browser | 51 io/*: Skip # Don't run tests using dart:io in the browser |
52 package/*: Skip # Do not run those in Dartium. | 52 package/*: Skip # Do not run those in Dartium. |
53 debugger/*: Skip # Do not run standalone debugger tests in browser. | 53 debugger/*: Skip # Do not run standalone debugger tests in browser. |
54 coverage_test: Skip | 54 coverage_test: Skip |
55 http_launch_test: Skip | 55 http_launch_test: Skip |
| 56 vmservice/*: Skip # Do not run standalone vm service tests in browser. |
56 | 57 |
57 | 58 |
58 [ $compiler == dartanalyzer ] | 59 [ $compiler == dartanalyzer ] |
59 53bit_overflow_literal_test/01: fail, ok | 60 53bit_overflow_literal_test/01: fail, ok |
60 | 61 |
61 # test issue https://code.google.com/p/dart/issues/detail?id=11518 | 62 # test issue https://code.google.com/p/dart/issues/detail?id=11518 |
62 io/file_constructor_test: fail | 63 io/file_constructor_test: fail |
63 | 64 |
64 # The dart:io library is created at build time from separate files, and | 65 # The dart:io library is created at build time from separate files, and |
65 # there is no language-spec compatible way to run unit tests on the private | 66 # there is no language-spec compatible way to run unit tests on the private |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
111 int_array_load_elimination_test: Skip # This is a VM test | 112 int_array_load_elimination_test: Skip # This is a VM test |
112 medium_integer_test: Fail, OK # Test fails with JS number semantics: issue 1533. | 113 medium_integer_test: Fail, OK # Test fails with JS number semantics: issue 1533. |
113 io/process_exit_negative_test: Fail, OK # relies on a static error that is a war
ning now. | 114 io/process_exit_negative_test: Fail, OK # relies on a static error that is a war
ning now. |
114 package/package_isolate_test: Skip # spawnUri does not work in dart2js. See issu
e 3051 | 115 package/package_isolate_test: Skip # spawnUri does not work in dart2js. See issu
e 3051 |
115 debugger/*: Skip # Do not run standalone vm debugger tests with dart2js. | 116 debugger/*: Skip # Do not run standalone vm debugger tests with dart2js. |
116 left_shift_bit_and_op_test: Skip # Integers exceed dart2js precision. | 117 left_shift_bit_and_op_test: Skip # Integers exceed dart2js precision. |
117 pow_test: Skip # Precision > 53 bits. | 118 pow_test: Skip # Precision > 53 bits. |
118 http_launch_test: Skip | 119 http_launch_test: Skip |
119 53bit_overflow_test: Skip | 120 53bit_overflow_test: Skip |
120 53bit_overflow_literal_test: Skip | 121 53bit_overflow_literal_test: Skip |
| 122 vmservice/*: Skip # Do not run standalone vm service tests with dart2js. |
121 | 123 |
122 | 124 |
123 [ $compiler == dart2js && $jscl ] | 125 [ $compiler == dart2js && $jscl ] |
124 assert_test: Fail, OK # Assumes unspecified fields on the AssertionError. | 126 assert_test: Fail, OK # Assumes unspecified fields on the AssertionError. |
125 byte_array_test: Fail, OK # ByteArray | 127 byte_array_test: Fail, OK # ByteArray |
126 deoptimization_test: Fail, OK # Requires bigint. | 128 deoptimization_test: Fail, OK # Requires bigint. |
127 out_of_memory_test: Fail, OK # d8 handles much larger arrays than Dart VM. | 129 out_of_memory_test: Fail, OK # d8 handles much larger arrays than Dart VM. |
128 io/options_test: Fail, OK # Cannot pass options to d8. | 130 io/options_test: Fail, OK # Cannot pass options to d8. |
129 | 131 |
130 [ $compiler == dart2js && $runtime == none ] | 132 [ $compiler == dart2js && $runtime == none ] |
(...skipping 16 matching lines...) Expand all Loading... |
147 | 149 |
148 [ $arch == simarm ] | 150 [ $arch == simarm ] |
149 out_of_memory_test: Skip # passes on Mac, crashes on Linux | 151 out_of_memory_test: Skip # passes on Mac, crashes on Linux |
150 | 152 |
151 [ $arch == mips ] | 153 [ $arch == mips ] |
152 *: Skip | 154 *: Skip |
153 | 155 |
154 [ $arch == simmips ] | 156 [ $arch == simmips ] |
155 io/file_fuzz_test: Pass, Timeout | 157 io/file_fuzz_test: Pass, Timeout |
156 out_of_memory_test: Skip # passes on Mac, crashes on Linux | 158 out_of_memory_test: Skip # passes on Mac, crashes on Linux |
OLD | NEW |