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 # CompileTimeErrors intentionally | 10 package/invalid_uri_test: Fail, OK # CompileTimeErrors intentionally |
(...skipping 26 matching lines...) Expand all Loading... |
37 # These test have type errors on purpose and take very long to run in | 37 # These test have type errors on purpose and take very long to run in |
38 # checked mode with no benefit. Skip. | 38 # checked mode with no benefit. Skip. |
39 io/file_fuzz_test: Skip | 39 io/file_fuzz_test: Skip |
40 io/directory_fuzz_test: Skip | 40 io/directory_fuzz_test: Skip |
41 | 41 |
42 [ ($runtime == vm || $runtime == dart_precompiled || $runtime == dart_product) &
& $system == macos ] | 42 [ ($runtime == vm || $runtime == dart_precompiled || $runtime == dart_product) &
& $system == macos ] |
43 # This test fails with "Too many open files" on the Mac OS buildbot. | 43 # This test fails with "Too many open files" on the Mac OS buildbot. |
44 # This is expected as MacOS by default runs with a very low number | 44 # This is expected as MacOS by default runs with a very low number |
45 # of allowed open files ('ulimit -n' says something like 256). | 45 # of allowed open files ('ulimit -n' says something like 256). |
46 io/socket_many_connections_test: Skip | 46 io/socket_many_connections_test: Skip |
| 47 # These tests are failing while the Mac secure sockets implementation is |
| 48 # migrated from BoringSSL to SecureTransport. |
| 49 io/socket_upgrade_to_secure_test: Fail |
| 50 io/secure_socket_test: Fail |
| 51 io/secure_unauthorized_test: Fail |
| 52 io/security_context_argument_test: Fail |
| 53 io/secure_session_resume_test: Fail |
| 54 io/secure_socket_alpn_test: Fail |
| 55 io/secure_server_socket_test: Fail |
| 56 io/secure_server_closing_test: Fail |
| 57 io/secure_server_client_certificate_test: Fail |
| 58 io/secure_multiple_client_server_test: Fail |
| 59 io/secure_client_server_test: Fail |
| 60 io/secure_builtin_roots_test: Fail |
| 61 io/secure_client_raw_server_test: Fail |
| 62 io/secure_bad_certificate_test: Fail |
| 63 io/regress_21160_test: Fail |
| 64 io/raw_secure_socket_test: Fail |
| 65 io/raw_secure_socket_pause_test: Fail |
| 66 io/raw_secure_server_socket_test: Fail |
| 67 io/raw_secure_server_closing_test: Fail |
| 68 io/https_unauthorized_test: Fail |
| 69 io/https_server_test: Fail |
| 70 io/https_bad_certificate_test: Fail |
| 71 io/http_proxy_test: Fail |
| 72 io/http_proxy_advanced_test: Fail |
47 | 73 |
48 [ $runtime == vm && $system == linux ] | 74 [ $runtime == vm && $system == linux ] |
49 # These tests have started timing out and issue 25649 has been filed to | 75 # These tests have started timing out and issue 25649 has been filed to |
50 # investigate, skipping these tests temporarily to get the bots to be | 76 # investigate, skipping these tests temporarily to get the bots to be |
51 # green again. | 77 # green again. |
52 io/http_proxy_test: Skip | 78 io/http_proxy_test: Skip |
53 io/secure_builtin_roots_test: Skip | 79 io/secure_builtin_roots_test: Skip |
54 | 80 |
55 | 81 |
56 [ $compiler == none && ($runtime == drt || $runtime == dartium) ] | 82 [ $compiler == none && ($runtime == drt || $runtime == dartium) ] |
(...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
289 # Following tests are skipped on dart_product as package mapping is not supporte
d. | 315 # Following tests are skipped on dart_product as package mapping is not supporte
d. |
290 [ $runtime == dart_product ] | 316 [ $runtime == dart_product ] |
291 package/scenarios/packages_file_strange_formatting/mixed_line_ends_test: Skip | 317 package/scenarios/packages_file_strange_formatting/mixed_line_ends_test: Skip |
292 package/scenarios/packages_file_strange_formatting/empty_lines_test: Skip | 318 package/scenarios/packages_file_strange_formatting/empty_lines_test: Skip |
293 package/scenarios/invalid/invalid_utf8_test: Skip | 319 package/scenarios/invalid/invalid_utf8_test: Skip |
294 package/scenarios/invalid/same_package_twice_test: Skip | 320 package/scenarios/invalid/same_package_twice_test: Skip |
295 package/scenarios/invalid/non_existent_packages_file_test: Skip | 321 package/scenarios/invalid/non_existent_packages_file_test: Skip |
296 package/scenarios/empty_packages_file/empty_packages_file_noimports_test: Skip | 322 package/scenarios/empty_packages_file/empty_packages_file_noimports_test: Skip |
297 package/scenarios/packages_option_only/packages_option_only_noimports_test: Skip | 323 package/scenarios/packages_option_only/packages_option_only_noimports_test: Skip |
298 package/scenarios/packages_option_only/packages_option_only_test: Skip | 324 package/scenarios/packages_option_only/packages_option_only_test: Skip |
OLD | NEW |