| 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 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 [ $compiler == dart2js && $csp ] | 128 [ $compiler == dart2js && $csp ] |
| 129 unittest/test/unittest_test: Pass, Crash # Issue 10935 | 129 unittest/test/unittest_test: Pass, Crash # Issue 10935 |
| 130 | 130 |
| 131 [ $compiler == dart2js && $minified ] | 131 [ $compiler == dart2js && $minified ] |
| 132 # The unittest package relies on getting the original (non-minified) method | 132 # The unittest package relies on getting the original (non-minified) method |
| 133 # names in Invocation. You can't get that when minifying. | 133 # names in Invocation. You can't get that when minifying. |
| 134 # TODO(ahe/erikcorry): But soon you can, now that we use Symbol. | 134 # TODO(ahe/erikcorry): But soon you can, now that we use Symbol. |
| 135 unittest/test/mock_test: Fail | 135 unittest/test/mock_test: Fail |
| 136 unittest/test/mock_regexp_negative_test: Fail | 136 unittest/test/mock_regexp_negative_test: Fail |
| 137 | 137 |
| 138 [ $compiler == dart2js && $unchecked && ($runtime == d8 || $runtime == chrome ||
$runtime == drt) ] |
| 139 crypto/test/sha1_test: Fail # V8 bug: https://code.google.com/p/v8/issues/detail
?id=2692 |
| 140 |
| 141 [ $compiler == dart2js && $browser ] |
| 142 crypto/test/sha256_test: Slow, Pass |
| 143 crypto/test/sha1_test: Slow, Pass |
| 144 |
| 145 [ $runtime == safari] |
| 146 # Bug in JSC: the test only passes when being debugged. |
| 147 crypto/test/hmac_md5_test: Fail, Pass |
| 148 |
| 138 # The unminified unittest tests test that the real names of Dart types are | 149 # The unminified unittest tests test that the real names of Dart types are |
| 139 # printed. Minified versions of these tests exist that test the behavior when | 150 # printed. Minified versions of these tests exist that test the behavior when |
| 140 # minified. | 151 # minified. |
| 141 unittest/test/*_unminified_test: Skip | 152 unittest/test/*_unminified_test: Skip |
| 142 | 153 |
| 143 [ $minified == false ] | 154 [ $minified == false ] |
| 144 # The minified unittest tests test that the minified names of Dart types are | 155 # The minified unittest tests test that the minified names of Dart types are |
| 145 # printed. Unminified versions of these tests exist that test the behavior when | 156 # printed. Unminified versions of these tests exist that test the behavior when |
| 146 # not minified. | 157 # not minified. |
| 147 unittest/test/*_minified_test: Skip | 158 unittest/test/*_minified_test: Skip |
| (...skipping 14 matching lines...) Expand all Loading... |
| 162 *: Skip | 173 *: Skip |
| 163 | 174 |
| 164 # Skip serialization test that explicitly has no library declaration in the | 175 # Skip serialization test that explicitly has no library declaration in the |
| 165 # test on Dartium, which requires all tests to have a library. | 176 # test on Dartium, which requires all tests to have a library. |
| 166 [ $runtime == dartium || $runtime == drt ] | 177 [ $runtime == dartium || $runtime == drt ] |
| 167 serialization/test/no_library_test: Skip # Expected Failure | 178 serialization/test/no_library_test: Skip # Expected Failure |
| 168 | 179 |
| 169 # Skip mdv_observe tests on command line VM, they only run in the browser. | 180 # Skip mdv_observe tests on command line VM, they only run in the browser. |
| 170 [ $runtime == vm ] | 181 [ $runtime == vm ] |
| 171 mdv_observe: Skip | 182 mdv_observe: Skip |
| OLD | NEW |