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 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
199 [ $arch == mips ] | 199 [ $arch == mips ] |
200 *: Skip | 200 *: Skip |
201 | 201 |
202 [ $arch == simmips ] | 202 [ $arch == simmips ] |
203 *: Skip | 203 *: Skip |
204 | 204 |
205 # Skip serialization test that explicitly has no library declaration in the | 205 # Skip serialization test that explicitly has no library declaration in the |
206 # test on Dartium, which requires all tests to have a library. | 206 # test on Dartium, which requires all tests to have a library. |
207 [ $compiler == none && ( $runtime == dartium || $runtime == drt ) ] | 207 [ $compiler == none && ( $runtime == dartium || $runtime == drt ) ] |
208 serialization/test/no_library_test: Skip # Expected Failure | 208 serialization/test/no_library_test: Skip # Expected Failure |
| 209 serialization/test/serialization_test: Fail # Issue 13598 |
209 | 210 |
210 # Skip tests on the VM if the package depends on dart:html | 211 # Skip tests on the VM if the package depends on dart:html |
211 [ $runtime == vm ] | 212 [ $runtime == vm ] |
212 custom_element: Skip | 213 custom_element: Skip |
213 mdv: Skip | 214 mdv: Skip |
214 mutation_observer: Skip | 215 mutation_observer: Skip |
215 polymer_expressions/test/syntax_test: Skip | 216 polymer_expressions/test/syntax_test: Skip |
216 third_party/html5lib/test/browser/browser_test: Skip | 217 third_party/html5lib/test/browser/browser_test: Skip |
| 218 serialization/test/serialization_test: Fail # Issue 13598 |
217 | 219 |
218 [ $runtime == safari || $runtime == chrome || $runtime == ie9 || $runtime == ff
|| $runtime == dartium || $runtime == drt ] | 220 [ $runtime == safari || $runtime == chrome || $runtime == ie9 || $runtime == ff
|| $runtime == dartium || $runtime == drt ] |
219 docgen/test/single_library_test: Skip # Uses dart:io | 221 docgen/test/single_library_test: Skip # Uses dart:io |
220 scheduled_test/test/scheduled_server_test: Skip # Uses dart:io | 222 scheduled_test/test/scheduled_server_test: Skip # Uses dart:io |
221 | 223 |
222 [ $browser || $runtime == vm ] | 224 [ $browser || $runtime == vm ] |
223 unittest/test/missing_tick_test: Fail, OK # This test should fail, not time out. | 225 unittest/test/missing_tick_test: Fail, OK # This test should fail, not time out. |
224 | 226 |
225 # Issue http://dartbug.com/12930 | 227 # Issue http://dartbug.com/12930 |
226 [ $runtime == vm ] | 228 [ $runtime == vm ] |
227 intl/test/message_extraction/message_extraction_test: Pass, Fail # Issue 12930 | 229 intl/test/message_extraction/message_extraction_test: Pass, Fail # Issue 12930 |
228 | 230 |
229 [ $compiler == none && $runtime == vm ] | 231 [ $compiler == none && $runtime == vm ] |
230 observe/test/observe_test: Pass, Fail # Issue 13543 | 232 observe/test/observe_test: Pass, Fail # Issue 13543 |
231 | 233 |
232 [ $compiler == none && $runtime == vm && $checked ] | 234 [ $compiler == none && $runtime == vm && $checked ] |
233 intl/test/message_extraction/failed_extraction_test: Pass, Fail # Issue 13543 | 235 intl/test/message_extraction/failed_extraction_test: Pass, Fail # Issue 13543 |
OLD | NEW |