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