| 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 |
| 11 | 11 |
| 12 [ $runtime == vm ] | 12 [ $runtime == vm ] |
| 13 package/package_isolate_test: Fail # http://dartbug.com/7520. | 13 package/package_isolate_test: Fail # http://dartbug.com/7520. |
| 14 | 14 |
| 15 [ $runtime == vm && $checked ] | 15 [ $runtime == vm && $checked ] |
| 16 # These tests have type errors on purpose. | 16 # These tests have type errors on purpose. |
| 17 io/process_invalid_arguments_test: Fail, OK | 17 io/process_invalid_arguments_test: Fail, OK |
| 18 io/directory_invalid_arguments_test: Fail, OK | 18 io/directory_invalid_arguments_test: Fail, OK |
| 19 io/file_invalid_arguments_test: Fail, OK | 19 io/file_invalid_arguments_test: Fail, OK |
| 20 io/socket_invalid_arguments_test: Fail, OK | 20 io/socket_invalid_arguments_test: Fail, OK |
| 21 io/stdout_bad_argument_test: Fail, OK | 21 io/stdout_bad_argument_test: Fail, OK |
| 22 # These test have type errors on purpose and take very long to run in | 22 # These test have type errors on purpose and take very long to run in |
| 23 # checked mode with no benefit. Skip. | 23 # checked mode with no benefit. Skip. |
| 24 io/file_fuzz_test: Skip | 24 io/file_fuzz_test: Skip |
| 25 io/directory_fuzz_test: Skip | 25 io/directory_fuzz_test: Skip |
| 26 | 26 |
| 27 [ $runtime == vm && $system == macos ] | 27 [ $runtime == vm && $system == macos ] |
| 28 # These tests fail intermittently on MacOS due to an https request that |
| 29 # fails not completing the future it returns: Issue 12451 |
| 30 io/https_unauthorized_test: Pass, Fail |
| 31 io/https_bad_certificate_test: Pass, Fail |
| 32 |
| 28 # This test fails with "Too many open files" on the Mac OS buildbot. | 33 # This test fails with "Too many open files" on the Mac OS buildbot. |
| 29 # This is expected as MacOS by default runs with a very low number | 34 # This is expected as MacOS by default runs with a very low number |
| 30 # of allowed open files ('ulimit -n' says something like 256). | 35 # of allowed open files ('ulimit -n' says something like 256). |
| 31 io/socket_many_connections_test: Skip | 36 io/socket_many_connections_test: Skip |
| 32 | 37 |
| 33 # These tests pass on MacOS 10.8.2 but fails on the buildbot machines | 38 # These tests pass on MacOS 10.8.2 but fails on the buildbot machines |
| 34 # that are running an earlier version of MacOS. The issue is that the | 39 # that are running an earlier version of MacOS. The issue is that the |
| 35 # old version of MacOS does not expand the precomposed utf-8 it gets | 40 # old version of MacOS does not expand the precomposed utf-8 it gets |
| 36 # from the VM before comparing it to the decomposed utf-8 used for the | 41 # from the VM before comparing it to the decomposed utf-8 used for the |
| 37 # file system. | 42 # file system. |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 156 io/http_server_response_test: Pass, Slow | 161 io/http_server_response_test: Pass, Slow |
| 157 out_of_memory_test: Skip # passes on Mac, crashes on Linux | 162 out_of_memory_test: Skip # passes on Mac, crashes on Linux |
| 158 oom_error_stacktrace_test: Skip # Fails on Linux | 163 oom_error_stacktrace_test: Skip # Fails on Linux |
| 159 io/web_socket_ping_test: Skip # TODO(ajohnsen): Timeout issue | 164 io/web_socket_ping_test: Skip # TODO(ajohnsen): Timeout issue |
| 160 | 165 |
| 161 [ $arch == mips ] | 166 [ $arch == mips ] |
| 162 io/test_extension_test: Fail | 167 io/test_extension_test: Fail |
| 163 io/test_extension_fail_test: Fail | 168 io/test_extension_fail_test: Fail |
| 164 io/dart_std_io_pipe_test: Fail | 169 io/dart_std_io_pipe_test: Fail |
| 165 io/file_read_special_device_test: Fail | 170 io/file_read_special_device_test: Fail |
| OLD | NEW |