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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 intl/test/find_default_locale_standalone_test: Fail # Issue 8110 | 68 intl/test/find_default_locale_standalone_test: Fail # Issue 8110 |
69 intl/test/message_extraction/message_extraction_test: Fail # Issue 9167 | 69 intl/test/message_extraction/message_extraction_test: Fail # Issue 9167 |
70 | 70 |
71 [ $compiler == dart2js ] | 71 [ $compiler == dart2js ] |
72 analyzer_experimental/test/generated/ast_test: Fail, Slow # Issue 11230 | 72 analyzer_experimental/test/generated/ast_test: Fail, Slow # Issue 11230 |
73 unittest/test/instance_test: Fail # http://dartbug.com/11191 | 73 unittest/test/instance_test: Fail # http://dartbug.com/11191 |
74 | 74 |
75 [ $compiler == dart2js && $checked ] | 75 [ $compiler == dart2js && $checked ] |
76 mdv_observe/test/observable_map_test: Fail # BUG(11480): Triage. | 76 mdv_observe/test/observable_map_test: Fail # BUG(11480): Triage. |
77 | 77 |
78 [ $compiler == dartc || $compiler == dartanalyzer || $compiler == dart2analyzer] | 78 [ $compiler == dartanalyzer || $compiler == dart2analyzer] |
79 # These tests are runtime negative but statically positive, so we skip | 79 # These tests are runtime negative but statically positive, so we skip |
80 # them in the analyzer. | 80 # them in the analyzer. |
81 unittest/test/mock_regexp_negative_test: Skip | 81 unittest/test/mock_regexp_negative_test: Skip |
82 unittest/test/mock_stepwise_negative_test: Skip | 82 unittest/test/mock_stepwise_negative_test: Skip |
83 | 83 |
84 [ $compiler == dart2js && $csp ] | 84 [ $compiler == dart2js && $csp ] |
85 unittest/test/unittest_test: Pass, Crash # Issue 10935 | 85 unittest/test/unittest_test: Pass, Crash # Issue 10935 |
86 | 86 |
87 serialization/test/serialization_test: Fail # Issue 6490 | 87 serialization/test/serialization_test: Fail # Issue 6490 |
88 serialization/test/no_library_test: Fail # Issue 6490 | 88 serialization/test/no_library_test: Fail # Issue 6490 |
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
184 # test on Dartium, which requires all tests to have a library. | 184 # test on Dartium, which requires all tests to have a library. |
185 [ $runtime == dartium || $runtime == drt ] | 185 [ $runtime == dartium || $runtime == drt ] |
186 serialization/test/no_library_test: Skip # Expected Failure | 186 serialization/test/no_library_test: Skip # Expected Failure |
187 | 187 |
188 [ ($runtime == dartium || $runtime == drt) && $compiler == none ] | 188 [ ($runtime == dartium || $runtime == drt) && $compiler == none ] |
189 pathos/test/pathos_dart2js_test: Fail, OK # Issue 6490 | 189 pathos/test/pathos_dart2js_test: Fail, OK # Issue 6490 |
190 | 190 |
191 # Skip mdv tests on command line VM, they only run in the browser. | 191 # Skip mdv tests on command line VM, they only run in the browser. |
192 [ $runtime == vm ] | 192 [ $runtime == vm ] |
193 mdv: Skip | 193 mdv: Skip |
OLD | NEW |