| 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 | |
| 34 | 33 |
| 35 [ $runtime == vm && $system == windows] | 34 [ $runtime == vm && $system == windows] |
| 36 io/test_extension_test: Skip # Extensions not implemented on Windows | 35 io/test_extension_test: Skip # Extensions not implemented on Windows |
| 37 io/http_shutdown_test: Skip # Currently times out on windows | 36 io/http_shutdown_test: Skip # Currently times out on windows |
| 38 io/file_system_links_test: Skip # No links on Windows. | 37 io/file_system_links_test: Skip # No links on Windows. |
| 39 io/http_connection_header_test: Pass, Fail # Issue 2959 | 38 io/http_connection_header_test: Pass, Fail # Issue 2959 |
| 40 | 39 |
| 41 [ $compiler == none && $runtime == drt ] | 40 [ $compiler == none && $runtime == drt ] |
| 42 io/*: Skip # Don't run tests using dart:io in the browser | 41 io/*: Skip # Don't run tests using dart:io in the browser |
| 43 crypto/*: Skip # Don't run tests using dart:io in the browser | 42 crypto/*: Skip # Don't run tests using dart:io in the browser |
| (...skipping 28 matching lines...) Expand all Loading... |
| 72 out_of_memory_test: Fail, OK # d8 handles much larger arrays than Dart VM. | 71 out_of_memory_test: Fail, OK # d8 handles much larger arrays than Dart VM. |
| 73 io/http_parser_test: Fail, OK # ByteArray | 72 io/http_parser_test: Fail, OK # ByteArray |
| 74 io/options_test: Fail, OK # Cannot pass options to d8. | 73 io/options_test: Fail, OK # Cannot pass options to d8. |
| 75 | 74 |
| 76 [ $compiler == dart2js && $runtime == none ] | 75 [ $compiler == dart2js && $runtime == none ] |
| 77 fail_test: Skip # fails only at runtime, overrides default expectation from stan
dalone.status | 76 fail_test: Skip # fails only at runtime, overrides default expectation from stan
dalone.status |
| 78 io/options_test: Fail | 77 io/options_test: Fail |
| 79 | 78 |
| 80 [$compiler == dart2js && $browser ] | 79 [$compiler == dart2js && $browser ] |
| 81 *: Skip | 80 *: Skip |
| OLD | NEW |