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 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
117 [ $compiler == dart2js && $runtime == drt ] | 117 [ $compiler == dart2js && $runtime == drt ] |
118 intl/test/date_time_format_uninitialized_test: Pass, Fail # http://dartbug.com/9
000 | 118 intl/test/date_time_format_uninitialized_test: Pass, Fail # http://dartbug.com/9
000 |
119 | 119 |
120 [ $compiler == dart2js && $minified ] | 120 [ $compiler == dart2js && $minified ] |
121 # The unittest package relies on getting the original (non-minified) method | 121 # The unittest package relies on getting the original (non-minified) method |
122 # names in InvocationMirrors. You can't get that when minifying. | 122 # names in InvocationMirrors. You can't get that when minifying. |
123 unittest/test/mock_test: Fail | 123 unittest/test/mock_test: Fail |
124 unittest/test/mock_regexp_negative_test: Fail | 124 unittest/test/mock_regexp_negative_test: Fail |
125 | 125 |
126 [ $compiler == dart2js && $csp && $runtime == drt ] | 126 [ $compiler == dart2js && $csp && $runtime == drt ] |
127 unittest/test/unittest_test: Fail, Crash # Bug in v8, http://dartbug.com/9407 | 127 unittest/test/unittest_test: Pass, Fail, Crash # Bug in v8, http://dartbug.com/9
407 |
128 | 128 |
129 [ $compiler == none && $runtime == drt ] | 129 [ $compiler == none && $runtime == drt ] |
130 dartdoc/test/dartdoc_test: Skip # See dartbug.com/4541. | 130 dartdoc/test/dartdoc_test: Skip # See dartbug.com/4541. |
131 | 131 |
132 [ $arch == arm ] | 132 [ $arch == arm ] |
133 *: Skip | 133 *: Skip |
134 | 134 |
135 [ $arch == simarm ] | 135 [ $arch == simarm ] |
136 *: Skip | 136 *: Skip |
137 | 137 |
138 [ $arch == mips ] | 138 [ $arch == mips ] |
139 *: Skip | 139 *: Skip |
140 | 140 |
141 [ $arch == simmips ] | 141 [ $arch == simmips ] |
142 *: Skip | 142 *: Skip |
143 | 143 |
144 # Skip serialization test that explicitly has no library declaration in the | 144 # Skip serialization test that explicitly has no library declaration in the |
145 # test on Dartium, which requires all tests to have a library. | 145 # test on Dartium, which requires all tests to have a library. |
146 [ $runtime == dartium || $runtime == drt ] | 146 [ $runtime == dartium || $runtime == drt ] |
147 serialization/test/no_library_test: Skip # Expected Failure | 147 serialization/test/no_library_test: Skip # Expected Failure |
OLD | NEW |