| 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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 unittest/test/instance_test: Fail # http://dartbug.com/11191 | 66 unittest/test/instance_test: Fail # http://dartbug.com/11191 |
| 67 | 67 |
| 68 [ $compiler == dart2js && $checked ] | 68 [ $compiler == dart2js && $checked ] |
| 69 mdv_observe/test/observable_map_test: Fail # BUG(11480): Triage. | 69 mdv_observe/test/observable_map_test: Fail # BUG(11480): Triage. |
| 70 | 70 |
| 71 [ $compiler == dartc ] | 71 [ $compiler == dartc ] |
| 72 unittest/test/mock_regexp_negative_test: Fail | 72 unittest/test/mock_regexp_negative_test: Fail |
| 73 unittest/test/mock_stepwise_negative_test: Fail | 73 unittest/test/mock_stepwise_negative_test: Fail |
| 74 | 74 |
| 75 [ $compiler == dartanalyzer ] | 75 [ $compiler == dartanalyzer ] |
| 76 # test issue https://code.google.com/p/dart/issues/detail?id=11517 |
| 77 # These tests are not negetive statically. |
| 78 # Requested test fix or permission to mark 'fail, OK' |
| 76 unittest/test/mock_regexp_negative_test: fail | 79 unittest/test/mock_regexp_negative_test: fail |
| 77 unittest/test/mock_stepwise_negative_test: fail | 80 unittest/test/mock_stepwise_negative_test: fail |
| 78 | 81 |
| 79 [ $compiler == dart2analyzer ] | 82 [ $compiler == dart2analyzer ] |
| 80 unittest/test/mock_regexp_negative_test: fail | 83 unittest/test/mock_regexp_negative_test: fail |
| 81 unittest/test/mock_stepwise_negative_test: fail | 84 unittest/test/mock_stepwise_negative_test: fail |
| 82 | 85 |
| 83 [ $compiler == dart2js && $csp ] | 86 [ $compiler == dart2js && $csp ] |
| 84 unittest/test/unittest_test: Pass, Crash # Issue 10935 | 87 unittest/test/unittest_test: Pass, Crash # Issue 10935 |
| 85 | 88 |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 184 # test on Dartium, which requires all tests to have a library. | 187 # test on Dartium, which requires all tests to have a library. |
| 185 [ $runtime == dartium || $runtime == drt ] | 188 [ $runtime == dartium || $runtime == drt ] |
| 186 serialization/test/no_library_test: Skip # Expected Failure | 189 serialization/test/no_library_test: Skip # Expected Failure |
| 187 | 190 |
| 188 [ ($runtime == dartium || $runtime == drt) && $compiler == none ] | 191 [ ($runtime == dartium || $runtime == drt) && $compiler == none ] |
| 189 pathos/test/pathos_dart2js_test: Fail, OK # Issue 6490 | 192 pathos/test/pathos_dart2js_test: Fail, OK # Issue 6490 |
| 190 | 193 |
| 191 # Skip mdv_observe tests on command line VM, they only run in the browser. | 194 # Skip mdv_observe tests on command line VM, they only run in the browser. |
| 192 [ $runtime == vm ] | 195 [ $runtime == vm ] |
| 193 mdv_observe: Skip | 196 mdv_observe: Skip |
| OLD | NEW |