| 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 package/invalid_uri_test: Fail, OK # Fails intentionally | 5 package/invalid_uri_test: Fail, OK # Fails intentionally |
| 6 | 6 |
| 7 [ $runtime == vm && $checked ] | 7 [ $runtime == vm && $checked ] |
| 8 # These tests have type errors on purpose. | 8 # These tests have type errors on purpose. |
| 9 io/process_invalid_arguments_test: Fail, OK | 9 io/process_invalid_arguments_test: Fail, OK |
| 10 io/directory_invalid_arguments_test: Fail, OK | 10 io/directory_invalid_arguments_test: Fail, OK |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 io/secure_no_builtin_roots_test: Pass, Crash # Issue 7157 | 43 io/secure_no_builtin_roots_test: Pass, Crash # Issue 7157 |
| 44 io/secure_socket_bad_certificate_test: Pass, Crash, Fail, Timeout # Issue 7157 | 44 io/secure_socket_bad_certificate_test: Pass, Crash, Fail, Timeout # Issue 7157 |
| 45 io/http_shutdown_test: Pass, Fail, Timeout # Issue 7294 | 45 io/http_shutdown_test: Pass, Fail, Timeout # Issue 7294 |
| 46 | 46 |
| 47 [ $compiler == none && $runtime == drt ] | 47 [ $compiler == none && $runtime == drt ] |
| 48 io/*: Skip # Don't run tests using dart:io in the browser | 48 io/*: Skip # Don't run tests using dart:io in the browser |
| 49 crypto/*: Skip # Don't run tests using dart:io in the browser | 49 crypto/*: Skip # Don't run tests using dart:io in the browser |
| 50 package/*: Skip # Do not run those in Dartium. | 50 package/*: Skip # Do not run those in Dartium. |
| 51 | 51 |
| 52 [ $compiler == dartc ] | 52 [ $compiler == dartc ] |
| 53 *: Skip | 53 package/*: Skip |
| 54 |
| 55 # The dart:io library is created at build time from separate files, and |
| 56 # there is no language-spec compatible way to run unit tests on the private |
| 57 # members and methods of dart:io. |
| 58 # Dartc spots the misuse of 'part' directives in these unit tests. |
| 59 crypto/*: Skip # dartc cannot parse dart:io unit tests. |
| 60 io/mime_multipart_parser_test: Skip # dartc cannot parse dart:io unit tests. |
| 61 io/http_headers_test: Skip # dartc cannot parse dart:io unit tests. |
| 62 io/http_date_test: Skip # dartc cannot parse dart:io unit tests. |
| 63 io/url_encoding_test: Skip # dartc cannot parse dart:io unit tests. |
| 64 io/http_parser_test: Skip # dartc cannot parse dart:io unit tests. |
| 65 io/web_socket_protocol_processor_test: Skip # dart:io unit test. |
| 66 |
| 67 io/process_exit_negative_test: Fail # This is a compilation-time negative test. |
| 68 |
| 69 io/status_file_parser_test: Skip # test.dart uses old syntax. Issue 7387. |
| 70 status_expression_test: Skip # test.dart uses old syntax. Issue 7387. |
| 71 io/test_runner_test: Skip # test.dart uses old syntax. Issue 7387. |
| 54 | 72 |
| 55 [ $compiler == frog ] | 73 [ $compiler == frog ] |
| 56 *: Skip | 74 *: Skip |
| 57 | 75 |
| 58 [ $arch == arm ] | 76 [ $arch == arm ] |
| 59 *: Skip | 77 *: Skip |
| 60 | 78 |
| 61 | 79 |
| 62 [ $arch == simarm ] | 80 [ $arch == simarm ] |
| 63 *: Skip | 81 *: Skip |
| (...skipping 22 matching lines...) Expand all Loading... |
| 86 [ $compiler == dart2js && $browser ] | 104 [ $compiler == dart2js && $browser ] |
| 87 *: Skip | 105 *: Skip |
| 88 | 106 |
| 89 [ $compiler == dart2js && $checked ] | 107 [ $compiler == dart2js && $checked ] |
| 90 io/http_read_test: Skip # Timeout TODO(ngeoffray): investigate | 108 io/http_read_test: Skip # Timeout TODO(ngeoffray): investigate |
| 91 io/list_input_stream_test: Skip # Timeout TODO(ngeoffray): investigate | 109 io/list_input_stream_test: Skip # Timeout TODO(ngeoffray): investigate |
| 92 | 110 |
| 93 [ $compiler == dart2dart ] | 111 [ $compiler == dart2dart ] |
| 94 # Skip until we stabilize language tests. | 112 # Skip until we stabilize language tests. |
| 95 *: Skip | 113 *: Skip |
| OLD | NEW |