| 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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 intl/test/message_extraction/message_extraction_test: Fail # Issue 9167 | 78 intl/test/message_extraction/message_extraction_test: Fail # Issue 9167 |
| 79 | 79 |
| 80 # Skip http request tests on Dartium while resolving an odd | 80 # Skip http request tests on Dartium while resolving an odd |
| 81 # error there that causes the tests to timeout. | 81 # error there that causes the tests to timeout. |
| 82 [ $runtime == dartium || $runtime == drt ] | 82 [ $runtime == dartium || $runtime == drt ] |
| 83 intl/test/date_time_format_http_request_test: Skip | 83 intl/test/date_time_format_http_request_test: Skip |
| 84 | 84 |
| 85 [ $compiler == dart2js ] | 85 [ $compiler == dart2js ] |
| 86 # Skip intl_message tests that use mirrors on dart2js until it's been | 86 # Skip intl_message tests that use mirrors on dart2js until it's been |
| 87 # implemented there. | 87 # implemented there. |
| 88 serialization/test/serialization_test: Skip | 88 serialization/test/serialization_test: Skip # Issue 6490 |
| 89 serialization/test/no_library_test: Skip # Issue 6490 |
| 89 analyzer_experimental/test/generated/ast_test: Skip | 90 analyzer_experimental/test/generated/ast_test: Skip |
| 90 analyzer_experimental/test/generated/element_test: Skip | 91 analyzer_experimental/test/generated/element_test: Skip |
| 91 analyzer_experimental/test/generated/parser_test: Skip | 92 analyzer_experimental/test/generated/parser_test: Skip |
| 92 analyzer_experimental/test/generated/resolver_test: Skip | 93 analyzer_experimental/test/generated/resolver_test: Skip |
| 93 analyzer_experimental/test/generated/scanner_test: Skip | 94 analyzer_experimental/test/generated/scanner_test: Skip |
| 94 | 95 |
| 95 [ $compiler == dartc ] | 96 [ $compiler == dartc ] |
| 96 unittest/test/mock_regexp_negative_test: Fail | 97 unittest/test/mock_regexp_negative_test: Fail |
| 97 unittest/test/mock_stepwise_negative_test: Fail | 98 unittest/test/mock_stepwise_negative_test: Fail |
| 98 | 99 |
| (...skipping 17 matching lines...) Expand all Loading... |
| 116 *: Skip | 117 *: Skip |
| 117 | 118 |
| 118 [ $arch == simarm ] | 119 [ $arch == simarm ] |
| 119 *: Skip | 120 *: Skip |
| 120 | 121 |
| 121 [ $arch == mips ] | 122 [ $arch == mips ] |
| 122 *: Skip | 123 *: Skip |
| 123 | 124 |
| 124 [ $arch == simmips ] | 125 [ $arch == simmips ] |
| 125 *: Skip | 126 *: Skip |
| OLD | NEW |