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 # Don't run any test-like files that show up in packages directories. It | 5 # Don't run any test-like files that show up in packages directories. It |
6 # shouldn't be necessary to run "pub install" in these packages, but if you do | 6 # shouldn't be necessary to run "pub install" in these packages, but if you do |
7 # it shouldn't break the tests. | 7 # it shouldn't break the tests. |
8 */packages/*/*: Skip | 8 */packages/*/*: Skip |
9 */*/packages/*/*: Skip | 9 */*/packages/*/*: Skip |
10 */*/*/packages/*/*: Skip | 10 */*/*/packages/*/*: Skip |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 stack_trace/test/trace_test: Pass, Timeout # Issue 11645 | 93 stack_trace/test/trace_test: Pass, Timeout # Issue 11645 |
94 | 94 |
95 [ $compiler == dartanalyzer || $compiler == dart2analyzer] | 95 [ $compiler == dartanalyzer || $compiler == dart2analyzer] |
96 # These tests are runtime negative but statically positive, so we skip | 96 # These tests are runtime negative but statically positive, so we skip |
97 # them in the analyzer. | 97 # them in the analyzer. |
98 unittest/test/mock_regexp_negative_test: Skip | 98 unittest/test/mock_regexp_negative_test: Skip |
99 unittest/test/mock_stepwise_negative_test: Skip | 99 unittest/test/mock_stepwise_negative_test: Skip |
100 | 100 |
101 [ $compiler == dart2js && $csp ] | 101 [ $compiler == dart2js && $csp ] |
102 unittest/test/mirror_matchers_test: Skip # Issue 12151 | 102 unittest/test/mirror_matchers_test: Skip # Issue 12151 |
103 observe/test/observe_test: Fail # Issue 11970 | |
104 observe/test/path_observer_test: Fail # Issue 11970 | |
105 mdv/test/binding_syntax_test: Fail # Issue 11970 | |
106 polymer_expressions/test/eval_test: Fail # Issue 12578 | |
107 polymer_expressions/test/syntax_test: Fail # Issue 12578 | |
108 serialization/test/serialization_test: Fail # Issue 6490 | |
109 serialization/test/no_library_test: Fail # Issue 6490 | |
110 | 103 |
111 # This test cannot run under CSP because it is injecting a JavaScript polyfill | 104 # This test cannot run under CSP because it is injecting a JavaScript polyfill |
112 mutation_observer: Skip | 105 mutation_observer: Skip |
113 | 106 |
114 [ $compiler == dart2js && $minified ] | 107 [ $compiler == dart2js && $minified ] |
115 # The unminified unittest tests test that the real names of Dart types are | 108 # The unminified unittest tests test that the real names of Dart types are |
116 # printed. Minified versions of these tests exist that test the behavior when | 109 # printed. Minified versions of these tests exist that test the behavior when |
117 # minified. | 110 # minified. |
118 unittest/test/*_unminified_test: Skip # DO NOT COPY THIS UNLESS YOU WORK ON DART
2JS | 111 unittest/test/*_unminified_test: Skip # DO NOT COPY THIS UNLESS YOU WORK ON DART
2JS |
119 | 112 |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
204 *: Skip | 197 *: Skip |
205 | 198 |
206 [ $arch == mips ] | 199 [ $arch == mips ] |
207 *: Skip | 200 *: Skip |
208 | 201 |
209 [ $arch == simmips ] | 202 [ $arch == simmips ] |
210 *: Skip | 203 *: Skip |
211 | 204 |
212 # Skip serialization test that explicitly has no library declaration in the | 205 # Skip serialization test that explicitly has no library declaration in the |
213 # test on Dartium, which requires all tests to have a library. | 206 # test on Dartium, which requires all tests to have a library. |
214 [ $runtime == dartium || $runtime == drt ] | 207 [ $compiler == none && ( $runtime == dartium || $runtime == drt ) ] |
215 serialization/test/no_library_test: Skip # Expected Failure | 208 serialization/test/no_library_test: Skip # Expected Failure |
216 | 209 |
217 # Skip tests on the VM if the package depends on dart:html | 210 # Skip tests on the VM if the package depends on dart:html |
218 [ $runtime == vm ] | 211 [ $runtime == vm ] |
219 custom_element: Skip | 212 custom_element: Skip |
220 mdv: Skip | 213 mdv: Skip |
221 mutation_observer: Skip | 214 mutation_observer: Skip |
222 polymer_expressions/test/syntax_test: Skip | 215 polymer_expressions/test/syntax_test: Skip |
223 third_party/html5lib/test/browser/browser_test: Skip | 216 third_party/html5lib/test/browser/browser_test: Skip |
224 | 217 |
225 [ $runtime == safari || $runtime == chrome || $runtime == ie9 || $runtime == ff
|| $runtime == dartium || $runtime == drt ] | 218 [ $runtime == safari || $runtime == chrome || $runtime == ie9 || $runtime == ff
|| $runtime == dartium || $runtime == drt ] |
226 docgen/test/single_library_test: Skip # Uses dart:io | 219 docgen/test/single_library_test: Skip # Uses dart:io |
227 | 220 |
228 [ $browser || $runtime == vm ] | 221 [ $browser || $runtime == vm ] |
229 unittest/test/missing_tick_test: Fail, OK # This test should fail, not time out. | 222 unittest/test/missing_tick_test: Fail, OK # This test should fail, not time out. |
230 | 223 |
231 # Issue http://dartbug.com/12930 | 224 # Issue http://dartbug.com/12930 |
232 [ $runtime == vm ] | 225 [ $runtime == vm ] |
233 intl/test/message_extraction/message_extraction_test: Pass, Fail # Issue 12930 | 226 intl/test/message_extraction/message_extraction_test: Pass, Fail # Issue 12930 |
OLD | NEW |