Chromium Code Reviews| 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 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 112 unittest/test/mock_regexp_negative_test: Fail | 112 unittest/test/mock_regexp_negative_test: Fail |
| 113 unittest/test/mock_stepwise_negative_test: Fail | 113 unittest/test/mock_stepwise_negative_test: Fail |
| 114 | 114 |
| 115 [ $compiler == dartanalyzer ] | 115 [ $compiler == dartanalyzer ] |
| 116 unittest/test/mock_regexp_negative_test: fail | 116 unittest/test/mock_regexp_negative_test: fail |
| 117 unittest/test/mock_stepwise_negative_test: fail | 117 unittest/test/mock_stepwise_negative_test: fail |
| 118 | 118 |
| 119 [ $compiler == dart2js ] | 119 [ $compiler == dart2js ] |
| 120 unittest/test/instance_test: Skip | 120 unittest/test/instance_test: Skip |
| 121 | 121 |
| 122 [ $compiler == dart2js && $csp ] | |
| 123 unittest/test/unittest_test: Pass, Crash # Issue 10935 | |
|
ahe
2013/05/29 08:21:12
I don't think this is related to csp.
I see it al
| |
| 124 | |
| 122 [ $compiler == dart2js && $minified ] | 125 [ $compiler == dart2js && $minified ] |
| 123 # The unittest package relies on getting the original (non-minified) method | 126 # The unittest package relies on getting the original (non-minified) method |
| 124 # names in Invocation. You can't get that when minifying. | 127 # names in Invocation. You can't get that when minifying. |
| 125 # TODO(ahe/erikcorry): But soon you can, now that we use Symbol. | 128 # TODO(ahe/erikcorry): But soon you can, now that we use Symbol. |
| 126 unittest/test/mock_test: Fail | 129 unittest/test/mock_test: Fail |
| 127 unittest/test/mock_regexp_negative_test: Fail | 130 unittest/test/mock_regexp_negative_test: Fail |
| 128 | 131 |
| 129 # The unminified unittest tests test that the real names of Dart types are | 132 # The unminified unittest tests test that the real names of Dart types are |
| 130 # printed. Minified versions of these tests exist that test the behavior when | 133 # printed. Minified versions of these tests exist that test the behavior when |
| 131 # minified. | 134 # minified. |
| (...skipping 18 matching lines...) Expand all Loading... | |
| 150 *: Skip | 153 *: Skip |
| 151 | 154 |
| 152 # Skip serialization test that explicitly has no library declaration in the | 155 # Skip serialization test that explicitly has no library declaration in the |
| 153 # test on Dartium, which requires all tests to have a library. | 156 # test on Dartium, which requires all tests to have a library. |
| 154 [ $runtime == dartium || $runtime == drt ] | 157 [ $runtime == dartium || $runtime == drt ] |
| 155 serialization/test/no_library_test: Skip # Expected Failure | 158 serialization/test/no_library_test: Skip # Expected Failure |
| 156 | 159 |
| 157 # Skip mdv_observe tests on command line VM, they only run in the browser. | 160 # Skip mdv_observe tests on command line VM, they only run in the browser. |
| 158 [ $runtime == vm ] | 161 [ $runtime == vm ] |
| 159 mdv_observe: Skip | 162 mdv_observe: Skip |
| OLD | NEW |