| 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 timeout_test: Skip # Timeout test for testing the test runner. | 5 timeout_test: Skip # Timeout test for testing the test runner. |
| 6 fail_test: Fail, OK # Fails intentionally | 6 fail_test: Fail, OK # Fails intentionally |
| 7 out_of_memory_test: Skip # Issue 2345 | 7 out_of_memory_test: Skip # Issue 2345 |
| 8 | 8 |
| 9 package/invalid_uri_test: Fail, OK # Fails intentionally | 9 package/invalid_uri_test: Fail, OK # Fails intentionally |
| 10 | 10 |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 [ $runtime == vm] | 23 [ $runtime == vm] |
| 24 io/many_echo_server_test: Skip # Bug 5103754 | 24 io/many_echo_server_test: Skip # Bug 5103754 |
| 25 # These tests fail, crash, and timeout to test the testing infrastructure. | 25 # These tests fail, crash, and timeout to test the testing infrastructure. |
| 26 io/test_extension_test: Fail # shared library in wrong place (issue 1817) | 26 io/test_extension_test: Fail # shared library in wrong place (issue 1817) |
| 27 | 27 |
| 28 [ $runtime == vm && $system == macos] | 28 [ $runtime == vm && $system == macos] |
| 29 # This test fails with "Too many open files" on the Mac OS buildbot. | 29 # This test fails with "Too many open files" on the Mac OS buildbot. |
| 30 io/socket_many_connections_test: Skip | 30 io/socket_many_connections_test: Skip |
| 31 io/test_extension_test: Skip # Extensions not implemented on MacOS | 31 io/test_extension_test: Skip # Extensions not implemented on MacOS |
| 32 io/http_server_handler_test: Skip # Issue 2637 | 32 io/http_server_handler_test: Skip # Issue 2637 |
| 33 io/process_many_test: Skip # Issue 3236 |
| 33 | 34 |
| 34 [ $runtime == vm && $system == windows] | 35 [ $runtime == vm && $system == windows] |
| 35 io/test_extension_test: Skip # Extensions not implemented on Windows | 36 io/test_extension_test: Skip # Extensions not implemented on Windows |
| 36 io/http_shutdown_test: Skip # Currently times out on windows | 37 io/http_shutdown_test: Skip # Currently times out on windows |
| 37 io/file_system_links_test: Skip # No links on Windows. | 38 io/file_system_links_test: Skip # No links on Windows. |
| 38 io/http_connection_header_test: Pass, Fail # Issue 2959 | 39 io/http_connection_header_test: Pass, Fail # Issue 2959 |
| 39 | 40 |
| 40 [ $compiler == none && $runtime == drt ] | 41 [ $compiler == none && $runtime == drt ] |
| 41 io/*: Skip # Don't run tests using dart:io in the browser | 42 io/*: Skip # Don't run tests using dart:io in the browser |
| 42 crypto/*: Skip # Don't run tests using dart:io in the browser | 43 crypto/*: Skip # Don't run tests using dart:io in the browser |
| (...skipping 25 matching lines...) Expand all Loading... |
| 68 assert_test: Fail # Assert not implemented | 69 assert_test: Fail # Assert not implemented |
| 69 byte_array_test: Fail, OK # ByteArray | 70 byte_array_test: Fail, OK # ByteArray |
| 70 deoptimization_test: Fail, OK # Requires bigint. | 71 deoptimization_test: Fail, OK # Requires bigint. |
| 71 out_of_memory_test: Fail, OK # d8 handles much larger arrays than Dart VM. | 72 out_of_memory_test: Fail, OK # d8 handles much larger arrays than Dart VM. |
| 72 io/http_parser_test: Fail, OK # ByteArray | 73 io/http_parser_test: Fail, OK # ByteArray |
| 73 io/options_test: Fail, OK # Cannot pass options to d8. | 74 io/options_test: Fail, OK # Cannot pass options to d8. |
| 74 | 75 |
| 75 [ $compiler == dart2js && $runtime == none ] | 76 [ $compiler == dart2js && $runtime == none ] |
| 76 fail_test: Skip # fails only at runtime, overrides default expectation from stan
dalone.status | 77 fail_test: Skip # fails only at runtime, overrides default expectation from stan
dalone.status |
| 77 io/options_test: Fail | 78 io/options_test: Fail |
| OLD | NEW |