| OLD | NEW |
| 1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2012, 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 io/http_basic_test: Pass, Timeout # Issue 6393 |
| 6 |
| 5 out_of_memory_test: Skip # Issue 2345 | 7 out_of_memory_test: Skip # Issue 2345 |
| 6 | 8 |
| 7 package/invalid_uri_test: Fail, OK # Fails intentionally | 9 package/invalid_uri_test: Fail, OK # Fails intentionally |
| 8 | 10 |
| 9 io/http_basic_test: Fail, Pass # Flaky test: http://dartbug.com/6484 | |
| 10 | |
| 11 [ $runtime == vm && $checked ] | 11 [ $runtime == vm && $checked ] |
| 12 # These tests have type errors on purpose. | 12 # These tests have type errors on purpose. |
| 13 io/process_invalid_arguments_test: Fail, OK | 13 io/process_invalid_arguments_test: Fail, OK |
| 14 io/directory_invalid_arguments_test: Fail, OK | 14 io/directory_invalid_arguments_test: Fail, OK |
| 15 io/file_invalid_arguments_test: Fail, OK | 15 io/file_invalid_arguments_test: Fail, OK |
| 16 io/socket_invalid_arguments_test: Fail, OK | 16 io/socket_invalid_arguments_test: Fail, OK |
| 17 # These test have type errors on purpose and take very long to run in | 17 # These test have type errors on purpose and take very long to run in |
| 18 # checked mode with no benefit. Skip. | 18 # checked mode with no benefit. Skip. |
| 19 io/file_fuzz_test: Skip | 19 io/file_fuzz_test: Skip |
| 20 io/directory_fuzz_test: Skip | 20 io/directory_fuzz_test: Skip |
| 21 | 21 |
| 22 [ $runtime == vm && $system == linux ] | 22 [ $runtime == vm && $system == linux ] |
| 23 io/test_runner_test: Pass, Fail # Issue 1947 | 23 io/test_runner_test: Pass, Fail # Issue 1947 |
| 24 | 24 |
| 25 [ $runtime == vm && $system == macos ] | 25 [ $runtime == vm && $system == macos ] |
| 26 # This test fails with "Too many open files" on the Mac OS buildbot. | 26 # This test fails with "Too many open files" on the Mac OS buildbot. |
| 27 # This is expected as MacOS by default runs with a very low number | 27 # This is expected as MacOS by default runs with a very low number |
| 28 # of allowed open files ('ulimit -n' says something like 256). | 28 # of allowed open files ('ulimit -n' says something like 256). |
| 29 io/socket_many_connections_test: Skip | 29 io/socket_many_connections_test: Skip |
| 30 io/http_proxy_test: Fail, Pass # http://dartbug.com/5717 | |
| 31 | 30 |
| 32 [ $runtime == vm && $system == windows ] | 31 [ $runtime == vm && $system == windows ] |
| 33 io/file_system_links_test: Skip # No links on Windows. | 32 io/file_system_links_test: Skip # No links on Windows. |
| 34 | 33 |
| 35 [ $compiler == none && $runtime == drt ] | 34 [ $compiler == none && $runtime == drt ] |
| 36 io/*: Skip # Don't run tests using dart:io in the browser | 35 io/*: Skip # Don't run tests using dart:io in the browser |
| 37 crypto/*: Skip # Don't run tests using dart:io in the browser | 36 crypto/*: Skip # Don't run tests using dart:io in the browser |
| 38 package/*: Skip # Do not run those in Dartium. | 37 package/*: Skip # Do not run those in Dartium. |
| 39 | 38 |
| 40 [ $compiler == dartc ] | 39 [ $compiler == dartc ] |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 [ $compiler == dart2js && $browser ] | 71 [ $compiler == dart2js && $browser ] |
| 73 *: Skip | 72 *: Skip |
| 74 | 73 |
| 75 [ $compiler == dart2js && $checked ] | 74 [ $compiler == dart2js && $checked ] |
| 76 io/http_read_test: Skip # Timeout TODO(ngeoffray): investigate | 75 io/http_read_test: Skip # Timeout TODO(ngeoffray): investigate |
| 77 io/list_input_stream_test: Skip # Timeout TODO(ngeoffray): investigate | 76 io/list_input_stream_test: Skip # Timeout TODO(ngeoffray): investigate |
| 78 | 77 |
| 79 [ $compiler == dart2dart ] | 78 [ $compiler == dart2dart ] |
| 80 # Skip until we stabilize language tests. | 79 # Skip until we stabilize language tests. |
| 81 *: Skip | 80 *: Skip |
| OLD | NEW |