| 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 18 matching lines...) Expand all Loading... |
| 29 # 32 bits where we do bitwise operations). | 29 # 32 bits where we do bitwise operations). |
| 30 | 30 |
| 31 [ $runtime == opera && $compiler == dart2js ] | 31 [ $runtime == opera && $compiler == dart2js ] |
| 32 intl/test/find_default_locale_browser_test: Fail | 32 intl/test/find_default_locale_browser_test: Fail |
| 33 intl/test/date_time_format_http_request_test: Skip # Timeout. | 33 intl/test/date_time_format_http_request_test: Skip # Timeout. |
| 34 | 34 |
| 35 [ $runtime == ie9 ] | 35 [ $runtime == ie9 ] |
| 36 intl/test/date_time_format_http_request_test: Fail # Issue 8983 | 36 intl/test/date_time_format_http_request_test: Fail # Issue 8983 |
| 37 mime/test/mime_multipart_transformer_test: Skip # No typed_data on IE9. | 37 mime/test/mime_multipart_transformer_test: Skip # No typed_data on IE9. |
| 38 | 38 |
| 39 [ $runtime == chrome && $compiler == dart2js ] |
| 40 intl/test/date_time_format_http_request_test: Pass, Fail # Issue: 12239 |
| 41 |
| 39 [ $runtime == safari ] | 42 [ $runtime == safari ] |
| 40 fixnum/test/int_64_test: Pass, Fail # Bug in JSC. | 43 fixnum/test/int_64_test: Pass, Fail # Bug in JSC. |
| 41 crypto/test/hmac_sha1_test: Fail # Issue 11407. | 44 crypto/test/hmac_sha1_test: Fail # Issue 11407. |
| 42 crypto/test/sha1_test: Fail # Issue 11407. | 45 crypto/test/sha1_test: Fail # Issue 11407. |
| 43 | 46 |
| 44 # Skip browser-specific tests on VM | 47 # Skip browser-specific tests on VM |
| 45 [ $runtime == vm ] | 48 [ $runtime == vm ] |
| 46 path/test/browser_test: Fail, OK # Uses dart:html | 49 path/test/browser_test: Fail, OK # Uses dart:html |
| 47 intl/test/find_default_locale_browser_test: Skip | 50 intl/test/find_default_locale_browser_test: Skip |
| 48 intl/test/date_time_format_http_request_test: Skip | 51 intl/test/date_time_format_http_request_test: Skip |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 167 | 170 |
| 168 # Skip tests on the VM if the package depends on dart:html | 171 # Skip tests on the VM if the package depends on dart:html |
| 169 [ $runtime == vm ] | 172 [ $runtime == vm ] |
| 170 custom_element: Skip | 173 custom_element: Skip |
| 171 mdv: Skip | 174 mdv: Skip |
| 172 mutation_observer: Skip | 175 mutation_observer: Skip |
| 173 | 176 |
| 174 [ $runtime == safari || $runtime == chrome || $runtime == ie9 || $runtime == ff
|| $runtime == dartium || $runtime == drt ] | 177 [ $runtime == safari || $runtime == chrome || $runtime == ie9 || $runtime == ff
|| $runtime == dartium || $runtime == drt ] |
| 175 docgen/test/single_library_test: Skip # Uses dart:io | 178 docgen/test/single_library_test: Skip # Uses dart:io |
| 176 | 179 |
| OLD | NEW |