| 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 # Run this test manually to verify that the fixnum library produces | 5 # Run this test manually to verify that the fixnum library produces |
| 6 # the same results as native ints on a set of directed and random inputs. | 6 # the same results as native ints on a set of directed and random inputs. |
| 7 # Skip it when running automated tests because it times out. This | 7 # Skip it when running automated tests because it times out. This |
| 8 # test only makes sense on runtimes that support 64-bit integer | 8 # test only makes sense on runtimes that support 64-bit integer |
| 9 # arithmetic natively, i.e., the VM. | 9 # arithmetic natively, i.e., the VM. |
| 10 fixnum/test/int_64_vm_test: Skip | 10 fixnum/test/int_64_vm_test: Skip |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 analyzer_experimental/test/generated/ast_test: Skip # Imports dart:io. | 59 analyzer_experimental/test/generated/ast_test: Skip # Imports dart:io. |
| 60 analyzer_experimental/test/generated/element_test: Skip # Imports dart:io. | 60 analyzer_experimental/test/generated/element_test: Skip # Imports dart:io. |
| 61 analyzer_experimental/test/generated/parser_test: Skip # Imports dart:io. | 61 analyzer_experimental/test/generated/parser_test: Skip # Imports dart:io. |
| 62 analyzer_experimental/test/generated/resolver_test: Skip # Imports dart:io. | 62 analyzer_experimental/test/generated/resolver_test: Skip # Imports dart:io. |
| 63 analyzer_experimental/test/generated/scanner_test: Skip # Imports dart:io. | 63 analyzer_experimental/test/generated/scanner_test: Skip # Imports dart:io. |
| 64 | 64 |
| 65 # Issue 8440 forces us to use pathos in the scheduled_test tests, which would | 65 # Issue 8440 forces us to use pathos in the scheduled_test tests, which would |
| 66 # otherwise be dart2js-compatible. | 66 # otherwise be dart2js-compatible. |
| 67 scheduled_test/test/*: Skip | 67 scheduled_test/test/*: Skip |
| 68 | 68 |
| 69 # We use pathos in the stack_trace tests. We can run them on dart2js when issue |
| 70 # 6943 is fixed. |
| 71 stack_trace/test/*: Skip |
| 72 |
| 69 [ $runtime == opera && $compiler == dart2js ] | 73 [ $runtime == opera && $compiler == dart2js ] |
| 70 intl/test/find_default_locale_browser_test: Fail | 74 intl/test/find_default_locale_browser_test: Fail |
| 71 intl/test/date_time_format_http_request_test: Skip # Timeout. | 75 intl/test/date_time_format_http_request_test: Skip # Timeout. |
| 72 | 76 |
| 73 [ $runtime == ie9 ] | 77 [ $runtime == ie9 ] |
| 74 intl/test/date_time_format_http_request_test: Fail # Issue 8983 | 78 intl/test/date_time_format_http_request_test: Fail # Issue 8983 |
| 75 | 79 |
| 76 [ $runtime == safari ] | 80 [ $runtime == safari ] |
| 77 fixnum/test/int_64_test: Pass, Fail # Bug in JSC. | 81 fixnum/test/int_64_test: Pass, Fail # Bug in JSC. |
| 78 | 82 |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 [ $arch == mips ] | 134 [ $arch == mips ] |
| 131 *: Skip | 135 *: Skip |
| 132 | 136 |
| 133 [ $arch == simmips ] | 137 [ $arch == simmips ] |
| 134 *: Skip | 138 *: Skip |
| 135 | 139 |
| 136 # Skip serialization test that explicitly has no library declaration in the | 140 # Skip serialization test that explicitly has no library declaration in the |
| 137 # test on Dartium, which requires all tests to have a library. | 141 # test on Dartium, which requires all tests to have a library. |
| 138 [ $runtime == dartium || $runtime == drt ] | 142 [ $runtime == dartium || $runtime == drt ] |
| 139 serialization/test/no_library_test: Skip # Expected Failure | 143 serialization/test/no_library_test: Skip # Expected Failure |
| OLD | NEW |