| 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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 analyzer_experimental/test/generated/scanner_test: Skip | 107 analyzer_experimental/test/generated/scanner_test: Skip |
| 108 | 108 |
| 109 [ $compiler == dartc ] | 109 [ $compiler == dartc ] |
| 110 unittest/test/mock_regexp_negative_test: Fail | 110 unittest/test/mock_regexp_negative_test: Fail |
| 111 unittest/test/mock_stepwise_negative_test: Fail | 111 unittest/test/mock_stepwise_negative_test: Fail |
| 112 | 112 |
| 113 | 113 |
| 114 [ $compiler == dart2js ] | 114 [ $compiler == dart2js ] |
| 115 unittest/test/instance_test: Skip | 115 unittest/test/instance_test: Skip |
| 116 | 116 |
| 117 | |
| 118 [ $compiler == dart2js && $runtime == drt ] | |
| 119 intl/test/date_time_format_uninitialized_test: Pass, Fail # http://dartbug.com/9
000 | |
| 120 | |
| 121 [ $compiler == dart2js && $minified ] | 117 [ $compiler == dart2js && $minified ] |
| 122 # The unittest package relies on getting the original (non-minified) method | 118 # The unittest package relies on getting the original (non-minified) method |
| 123 # names in Invocation. You can't get that when minifying. | 119 # names in Invocation. You can't get that when minifying. |
| 124 # TODO(ahe/erikcorry): But soon you can, now that we use Symbol. | 120 # TODO(ahe/erikcorry): But soon you can, now that we use Symbol. |
| 125 unittest/test/mock_test: Fail | 121 unittest/test/mock_test: Fail |
| 126 unittest/test/mock_regexp_negative_test: Fail | 122 unittest/test/mock_regexp_negative_test: Fail |
| 127 | 123 |
| 128 [ $compiler == none && $runtime == drt ] | 124 [ $compiler == none && $runtime == drt ] |
| 129 dartdoc/test/dartdoc_test: Skip # See dartbug.com/4541. | 125 dartdoc/test/dartdoc_test: Skip # See dartbug.com/4541. |
| 130 | 126 |
| 131 [ $arch == arm ] | 127 [ $arch == arm ] |
| 132 *: Skip | 128 *: Skip |
| 133 | 129 |
| 134 [ $arch == simarm ] | 130 [ $arch == simarm ] |
| 135 *: Skip | 131 *: Skip |
| 136 | 132 |
| 137 [ $arch == mips ] | 133 [ $arch == mips ] |
| 138 *: Skip | 134 *: Skip |
| 139 | 135 |
| 140 [ $arch == simmips ] | 136 [ $arch == simmips ] |
| 141 *: Skip | 137 *: Skip |
| 142 | 138 |
| 143 # Skip serialization test that explicitly has no library declaration in the | 139 # Skip serialization test that explicitly has no library declaration in the |
| 144 # test on Dartium, which requires all tests to have a library. | 140 # test on Dartium, which requires all tests to have a library. |
| 145 [ $runtime == dartium || $runtime == drt ] | 141 [ $runtime == dartium || $runtime == drt ] |
| 146 serialization/test/no_library_test: Skip # Expected Failure | 142 serialization/test/no_library_test: Skip # Expected Failure |
| OLD | NEW |