| 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 # Don't run any test-like files that show up in packages directories. It | 5 # Don't run any test-like files that show up in packages directories. It |
| 6 # shouldn't be necessary to run "pub install" in these packages, but if you do | 6 # shouldn't be necessary to run "pub install" in these packages, but if you do |
| 7 # it shouldn't break the tests. | 7 # it shouldn't break the tests. |
| 8 */packages/*/*: Skip | 8 */packages/*/*: Skip |
| 9 */*/packages/*/*: Skip | 9 */*/packages/*/*: Skip |
| 10 */*/*/packages/*/*: Skip | 10 */*/*/packages/*/*: Skip |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 *: Skip | 70 *: Skip |
| 71 | 71 |
| 72 [ $compiler == dart2js || $compiler == dart2dart ] | 72 [ $compiler == dart2js || $compiler == dart2dart ] |
| 73 source_maps/test/vlq_test: RuntimeError # A VLQ test checks for large numbers th
at | 73 source_maps/test/vlq_test: RuntimeError # A VLQ test checks for large numbers th
at |
| 74 # overflow in JS (numbers slightly larger than | 74 # overflow in JS (numbers slightly larger than |
| 75 # 32 bits where we do bitwise operations). | 75 # 32 bits where we do bitwise operations). |
| 76 [ $runtime == ff ] | 76 [ $runtime == ff ] |
| 77 # Bug in Spidermonkey's Uint8ClampedArray. | 77 # Bug in Spidermonkey's Uint8ClampedArray. |
| 78 # See https://bugzilla.mozilla.org/show_bug.cgi?id=940972 | 78 # See https://bugzilla.mozilla.org/show_bug.cgi?id=940972 |
| 79 # Likely to get patched only on some versions of Firefox. | 79 # Likely to get patched only on some versions of Firefox. |
| 80 collection_helpers/test/typed_buffers_test: RuntimeError | 80 collection_helpers/test/typed_buffers_test: RuntimeError, Pass |
| 81 | 81 |
| 82 [ $runtime == opera && $compiler == dart2js ] | 82 [ $runtime == opera && $compiler == dart2js ] |
| 83 intl/test/find_default_locale_browser_test: Fail | 83 intl/test/find_default_locale_browser_test: Fail |
| 84 intl/test/date_time_format_http_request_test: Skip # Timeout. | 84 intl/test/date_time_format_http_request_test: Skip # Timeout. |
| 85 | 85 |
| 86 [ $runtime == ie9 ] | 86 [ $runtime == ie9 ] |
| 87 intl/test/date_time_format_http_request_test: Fail # Issue 8983 | 87 intl/test/date_time_format_http_request_test: Fail # Issue 8983 |
| 88 mime/test/mime_multipart_transformer_test: Skip # No typed_data on IE9. | 88 mime/test/mime_multipart_transformer_test: Skip # No typed_data on IE9. |
| 89 pkg/collection_helpers/test/typed_buffers_test: Fail, Crash # No typed_data on I
E9. | 89 collection_helpers/test/typed_buffers_test: Fail, Crash # No typed_data on IE9. |
| 90 polymer/test/instance_attrs_test: Pass, Fail # Issue 14167 | 90 polymer/test/instance_attrs_test: Pass, Fail # Issue 14167 |
| 91 | 91 |
| 92 [ $runtime == safari ] | 92 [ $runtime == safari ] |
| 93 fixnum/test/int_64_test: Pass, Fail # Bug in JSC. | 93 fixnum/test/int_64_test: Pass, Fail # Bug in JSC. |
| 94 crypto/test/hmac_sha1_test: Pass, Fail # Issue 11407. | 94 crypto/test/hmac_sha1_test: Pass, Fail # Issue 11407. |
| 95 crypto/test/sha1_test: Fail # Issue 11407. | 95 crypto/test/sha1_test: Fail # Issue 11407. |
| 96 stack_trace/test/trace_test: Fail # http://dartbug.com/12380 | 96 stack_trace/test/trace_test: Fail # http://dartbug.com/12380 |
| 97 crypto/test/sha256_test: Pass, Fail # Issue 12502 | 97 crypto/test/sha256_test: Pass, Fail # Issue 12502 |
| 98 crypto/test/hmac_sha256_test: Pass, Fail # Issue 12502 | 98 crypto/test/hmac_sha256_test: Pass, Fail # Issue 12502 |
| 99 | 99 |
| (...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 344 | 344 |
| 345 [ $runtime == vm && ($system == windows || $system == linux) ] | 345 [ $runtime == vm && ($system == windows || $system == linux) ] |
| 346 watcher/test/*/mac_os_test: Skip | 346 watcher/test/*/mac_os_test: Skip |
| 347 | 347 |
| 348 [ $runtime == vm && $system == linux ] | 348 [ $runtime == vm && $system == linux ] |
| 349 watcher/test/*/linux_test: Pass, Slow # Issue 14606 | 349 watcher/test/*/linux_test: Pass, Slow # Issue 14606 |
| 350 | 350 |
| 351 [ $runtime == vm && $system == macos ] | 351 [ $runtime == vm && $system == macos ] |
| 352 watcher/test/directory_watcher/mac_os_test: Pass, Fail # Issue 15024 | 352 watcher/test/directory_watcher/mac_os_test: Pass, Fail # Issue 15024 |
| 353 watcher/test/no_subscribers/mac_os_test: Fail # Issue 14793 (see test file for d
etails) | 353 watcher/test/no_subscribers/mac_os_test: Fail # Issue 14793 (see test file for d
etails) |
| OLD | NEW |