| 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 mime/test/mime_multipart_transformer_test: Skip # No typed_data on IE9. | 48 mime/test/mime_multipart_transformer_test: Skip # No typed_data on IE9. |
| 49 | 49 |
| 50 [ $runtime == safari ] | 50 [ $runtime == safari ] |
| 51 fixnum/test/int_64_test: Pass, Fail # Bug in JSC. | 51 fixnum/test/int_64_test: Pass, Fail # Bug in JSC. |
| 52 crypto/test/hmac_sha1_test: Fail # Issue 11407. | 52 crypto/test/hmac_sha1_test: Fail # Issue 11407. |
| 53 crypto/test/sha1_test: Fail # Issue 11407. | 53 crypto/test/sha1_test: Fail # Issue 11407. |
| 54 | 54 |
| 55 # Skip browser-specific tests on VM | 55 # Skip browser-specific tests on VM |
| 56 [ $runtime == vm ] | 56 [ $runtime == vm ] |
| 57 docgen/test/single_library_test: Skip # Uses js_helper | 57 docgen/test/single_library_test: Skip # Uses js_helper |
| 58 path/test/dartium_test: Fail, OK # Uses dart:html | 58 path/test/browser_test: Fail, OK # Uses dart:html |
| 59 path/test/dart2js_test: Fail, OK # Uses dart:html | |
| 60 intl/test/find_default_locale_browser_test: Skip | 59 intl/test/find_default_locale_browser_test: Skip |
| 61 intl/test/date_time_format_http_request_test: Skip | 60 intl/test/date_time_format_http_request_test: Skip |
| 62 | 61 |
| 63 [ $runtime == vm && $system == windows ] | 62 [ $runtime == vm && $system == windows ] |
| 64 intl/test/find_default_locale_standalone_test: Fail # Issue 8110 | 63 intl/test/find_default_locale_standalone_test: Fail # Issue 8110 |
| 65 intl/test/message_extraction/message_extraction_test: Fail # Issue 9167 | 64 intl/test/message_extraction/message_extraction_test: Fail # Issue 9167 |
| 66 | 65 |
| 67 [ $compiler == dart2js ] | 66 [ $compiler == dart2js ] |
| 68 analyzer_experimental/test/generated/ast_test: Fail, Slow # Issue 11230 | 67 analyzer_experimental/test/generated/ast_test: Fail, Slow # Issue 11230 |
| 69 unittest/test/instance_test: Fail # http://dartbug.com/11191 | 68 unittest/test/instance_test: Fail # http://dartbug.com/11191 |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 *: Skip | 167 *: Skip |
| 169 | 168 |
| 170 [ $arch == simmips ] | 169 [ $arch == simmips ] |
| 171 *: Skip | 170 *: Skip |
| 172 | 171 |
| 173 # Skip serialization test that explicitly has no library declaration in the | 172 # Skip serialization test that explicitly has no library declaration in the |
| 174 # test on Dartium, which requires all tests to have a library. | 173 # test on Dartium, which requires all tests to have a library. |
| 175 [ $runtime == dartium || $runtime == drt ] | 174 [ $runtime == dartium || $runtime == drt ] |
| 176 serialization/test/no_library_test: Skip # Expected Failure | 175 serialization/test/no_library_test: Skip # Expected Failure |
| 177 | 176 |
| 178 [ ($runtime == dartium || $runtime == drt) && $compiler == none ] | |
| 179 path/test/dart2js_test: Fail, OK # Issue 6490 | |
| 180 | |
| 181 # Skip mdv tests on command line VM, they only run in the browser. | 177 # Skip mdv tests on command line VM, they only run in the browser. |
| 182 [ $runtime == vm ] | 178 [ $runtime == vm ] |
| 183 mdv: Skip | 179 mdv: Skip |
| 184 | 180 |
| 185 [ $runtime == safari || $runtime == chrome || $runtime == ie9 || $runtime == ff
|| $runtime == dartium || $runtime == drt ] | 181 [ $runtime == safari || $runtime == chrome || $runtime == ie9 || $runtime == ff
|| $runtime == dartium || $runtime == drt ] |
| 186 docgen/test/single_library_test: Skip # Uses dart:io | 182 docgen/test/single_library_test: Skip # Uses dart:io |
| 187 | 183 |
| OLD | NEW |