| 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 27 matching lines...) Expand all Loading... |
| 38 # 32 bits where we do bitwise operations). | 38 # 32 bits where we do bitwise operations). |
| 39 | 39 |
| 40 [ $runtime == opera && $compiler == dart2js ] | 40 [ $runtime == opera && $compiler == dart2js ] |
| 41 intl/test/find_default_locale_browser_test: Fail | 41 intl/test/find_default_locale_browser_test: Fail |
| 42 intl/test/date_time_format_http_request_test: Skip # Timeout. | 42 intl/test/date_time_format_http_request_test: Skip # Timeout. |
| 43 | 43 |
| 44 [ $runtime == ie9 ] | 44 [ $runtime == ie9 ] |
| 45 intl/test/date_time_format_http_request_test: Fail # Issue 8983 | 45 intl/test/date_time_format_http_request_test: Fail # Issue 8983 |
| 46 mime/test/mime_multipart_transformer_test: Skip # No typed_data on IE9. | 46 mime/test/mime_multipart_transformer_test: Skip # No typed_data on IE9. |
| 47 | 47 |
| 48 [ $runtime == chrome && $compiler == dart2js ] | |
| 49 intl/test/date_time_format_http_request_test: Pass, Fail # Issue: 12376 | |
| 50 | |
| 51 [ $runtime == safari ] | 48 [ $runtime == safari ] |
| 52 fixnum/test/int_64_test: Pass, Fail # Bug in JSC. | 49 fixnum/test/int_64_test: Pass, Fail # Bug in JSC. |
| 53 crypto/test/hmac_sha1_test: Fail # Issue 11407. | 50 crypto/test/hmac_sha1_test: Fail # Issue 11407. |
| 54 crypto/test/sha1_test: Fail # Issue 11407. | 51 crypto/test/sha1_test: Fail # Issue 11407. |
| 55 stack_trace/test/trace_test: Fail # http://dartbug.com/12380 | 52 stack_trace/test/trace_test: Fail # http://dartbug.com/12380 |
| 56 | 53 |
| 57 # Skip browser-specific tests on VM | 54 # Skip browser-specific tests on VM |
| 58 [ $runtime == vm ] | 55 [ $runtime == vm ] |
| 59 path/test/browser_test: Fail, OK # Uses dart:html | 56 path/test/browser_test: Fail, OK # Uses dart:html |
| 60 intl/test/find_default_locale_browser_test: Skip | 57 intl/test/find_default_locale_browser_test: Skip |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 180 serialization/test/no_library_test: Skip # Expected Failure | 177 serialization/test/no_library_test: Skip # Expected Failure |
| 181 | 178 |
| 182 # Skip tests on the VM if the package depends on dart:html | 179 # Skip tests on the VM if the package depends on dart:html |
| 183 [ $runtime == vm ] | 180 [ $runtime == vm ] |
| 184 custom_element: Skip | 181 custom_element: Skip |
| 185 mdv: Skip | 182 mdv: Skip |
| 186 mutation_observer: Skip | 183 mutation_observer: Skip |
| 187 | 184 |
| 188 [ $runtime == safari || $runtime == chrome || $runtime == ie9 || $runtime == ff
|| $runtime == dartium || $runtime == drt ] | 185 [ $runtime == safari || $runtime == chrome || $runtime == ie9 || $runtime == ff
|| $runtime == dartium || $runtime == drt ] |
| 189 docgen/test/single_library_test: Skip # Uses dart:io | 186 docgen/test/single_library_test: Skip # Uses dart:io |
| OLD | NEW |