| 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 intl/test/find_default_locale_standalone_test: Fail # Issue 8110 | 65 intl/test/find_default_locale_standalone_test: Fail # Issue 8110 |
| 66 intl/test/message_extraction/message_extraction_test: Fail # Issue 9167 | 66 intl/test/message_extraction/message_extraction_test: Fail # Issue 9167 |
| 67 | 67 |
| 68 [ $compiler == dart2js ] | 68 [ $compiler == dart2js ] |
| 69 analyzer_experimental/test/generated/ast_test: Fail, Slow # Issue 11230 | 69 analyzer_experimental/test/generated/ast_test: Fail, Slow # Issue 11230 |
| 70 unittest/test/instance_test: Fail # http://dartbug.com/11191 | 70 unittest/test/instance_test: Fail # http://dartbug.com/11191 |
| 71 | 71 |
| 72 [ $compiler == dart2js && $checked ] | 72 [ $compiler == dart2js && $checked ] |
| 73 mdv_observe/test/observable_map_test: Fail # BUG(11480): Triage. | 73 mdv_observe/test/observable_map_test: Fail # BUG(11480): Triage. |
| 74 | 74 |
| 75 [ $compiler == dartc ] | 75 [ $compiler == dartc || $compiler == dartanalyzer || $compiler == dart2analyzer] |
| 76 unittest/test/mock_regexp_negative_test: Fail | 76 # These tests are runtime negative but statically positive, so we skip |
| 77 unittest/test/mock_stepwise_negative_test: Fail | 77 # them in the analyzer. |
| 78 | 78 unittest/test/mock_regexp_negative_test: Skip |
| 79 [ $compiler == dartanalyzer ] | 79 unittest/test/mock_stepwise_negative_test: Skip |
| 80 # test issue https://code.google.com/p/dart/issues/detail?id=11517 | |
| 81 # These tests are not negetive statically. | |
| 82 # Requested test fix or permission to mark 'fail, OK' | |
| 83 unittest/test/mock_regexp_negative_test: fail | |
| 84 unittest/test/mock_stepwise_negative_test: fail | |
| 85 | |
| 86 [ $compiler == dart2analyzer ] | |
| 87 unittest/test/mock_regexp_negative_test: fail | |
| 88 unittest/test/mock_stepwise_negative_test: fail | |
| 89 | 80 |
| 90 [ $compiler == dart2js && $csp ] | 81 [ $compiler == dart2js && $csp ] |
| 91 unittest/test/unittest_test: Pass, Crash # Issue 10935 | 82 unittest/test/unittest_test: Pass, Crash # Issue 10935 |
| 92 | 83 |
| 93 serialization/test/serialization_test: Fail # Issue 6490 | 84 serialization/test/serialization_test: Fail # Issue 6490 |
| 94 serialization/test/no_library_test: Fail # Issue 6490 | 85 serialization/test/no_library_test: Fail # Issue 6490 |
| 95 | 86 |
| 96 [ $compiler == dart2js && $minified ] | 87 [ $compiler == dart2js && $minified ] |
| 97 serialization/test/serialization_test: Fail # Issue 6490 | 88 serialization/test/serialization_test: Fail # Issue 6490 |
| 98 serialization/test/no_library_test: Fail # Issue 6490 | 89 serialization/test/no_library_test: Fail # Issue 6490 |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 189 # test on Dartium, which requires all tests to have a library. | 180 # test on Dartium, which requires all tests to have a library. |
| 190 [ $runtime == dartium || $runtime == drt ] | 181 [ $runtime == dartium || $runtime == drt ] |
| 191 serialization/test/no_library_test: Skip # Expected Failure | 182 serialization/test/no_library_test: Skip # Expected Failure |
| 192 | 183 |
| 193 [ ($runtime == dartium || $runtime == drt) && $compiler == none ] | 184 [ ($runtime == dartium || $runtime == drt) && $compiler == none ] |
| 194 pathos/test/pathos_dart2js_test: Fail, OK # Issue 6490 | 185 pathos/test/pathos_dart2js_test: Fail, OK # Issue 6490 |
| 195 | 186 |
| 196 # Skip mdv tests on command line VM, they only run in the browser. | 187 # Skip mdv tests on command line VM, they only run in the browser. |
| 197 [ $runtime == vm ] | 188 [ $runtime == vm ] |
| 198 mdv: Skip | 189 mdv: Skip |
| OLD | NEW |