| 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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 io/http_headers_test: Skip # dartc cannot parse dart:io unit tests. | 75 io/http_headers_test: Skip # dartc cannot parse dart:io unit tests. |
| 76 io/http_cookie_date_test: Skip # dartc cannot parse dart:io unit tests. | 76 io/http_cookie_date_test: Skip # dartc cannot parse dart:io unit tests. |
| 77 io/url_encoding_test: Skip # dartc cannot parse dart:io unit tests. | 77 io/url_encoding_test: Skip # dartc cannot parse dart:io unit tests. |
| 78 io/http_parser_test: Skip # dartc cannot parse dart:io unit tests. | 78 io/http_parser_test: Skip # dartc cannot parse dart:io unit tests. |
| 79 io/web_socket_protocol_processor_test: Skip # dart:io unit test. | 79 io/web_socket_protocol_processor_test: Skip # dart:io unit test. |
| 80 | 80 |
| 81 io/process_exit_negative_test: Fail # This is a compilation-time negative test. | 81 io/process_exit_negative_test: Fail # This is a compilation-time negative test. |
| 82 | 82 |
| 83 | 83 |
| 84 [ $compiler == dartanalyzer ] | 84 [ $compiler == dartanalyzer ] |
| 85 53bit_overflow_literal_test/01: fail, ok |
| 86 |
| 87 # test issue https://code.google.com/p/dart/issues/detail?id=11518 |
| 85 io/file_constructor_test: fail | 88 io/file_constructor_test: fail |
| 86 io/http_cookie_date_test: fail | 89 |
| 87 io/http_headers_test: fail | 90 # The dart:io library is created at build time from separate files, and |
| 88 io/http_parser_test: fail | 91 # there is no language-spec compatible way to run unit tests on the private |
| 89 io/process_exit_negative_test: fail | 92 # members and methods of dart:io. |
| 90 io/url_encoding_test: fail | 93 # Dart analyzer spots the misuse of 'part' directives in these unit tests. |
| 91 io/web_socket_protocol_processor_test: fail | 94 io/http_headers_test: Skip |
| 92 53bit_overflow_literal_test/01: fail, ok | 95 io/http_cookie_date_test: Skip |
| 96 io/url_encoding_test: Skip |
| 97 io/http_parser_test: Skip |
| 98 io/web_socket_protocol_processor_test: Skip |
| 99 |
| 100 # This is runtime test. |
| 101 io/process_exit_negative_test: Skip |
| 93 | 102 |
| 94 # Fails because checked-in dart executable is not up to date. | 103 # Fails because checked-in dart executable is not up to date. |
| 95 io/test_runner_test: fail | 104 io/test_runner_test: fail |
| 96 io/skipping_dart2js_compilations_test: fail | 105 io/skipping_dart2js_compilations_test: fail |
| 97 | 106 |
| 98 | 107 |
| 99 [ $compiler == dart2analyzer ] | 108 [ $compiler == dart2analyzer ] |
| 100 io/file_constructor_test: fail | 109 io/file_constructor_test: fail |
| 101 io/http_cookie_date_test: fail | 110 io/http_cookie_date_test: fail |
| 102 io/http_headers_test: fail | 111 io/http_headers_test: fail |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 162 | 171 |
| 163 [ $arch == arm || $arch == simarm ] | 172 [ $arch == arm || $arch == simarm ] |
| 164 *: Skip # Many of these tests are still flaky on arm, so skipping until we | 173 *: Skip # Many of these tests are still flaky on arm, so skipping until we |
| 165 # actually start working on implementing the needed features. | 174 # actually start working on implementing the needed features. |
| 166 | 175 |
| 167 [ $arch == mips ] | 176 [ $arch == mips ] |
| 168 *: Skip | 177 *: Skip |
| 169 | 178 |
| 170 [ $arch == simmips ] | 179 [ $arch == simmips ] |
| 171 *: Skip | 180 *: Skip |
| OLD | NEW |