| 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 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 181 # printed. Unminified versions of these tests exist that test the behavior when | 181 # printed. Unminified versions of these tests exist that test the behavior when |
| 182 # not minified. | 182 # not minified. |
| 183 unittest/test/*_minified_test: Skip # DO NOT COPY THIS UNLESS YOU WORK ON DART2J
S | 183 unittest/test/*_minified_test: Skip # DO NOT COPY THIS UNLESS YOU WORK ON DART2J
S |
| 184 | 184 |
| 185 [ $arch == mips ] | 185 [ $arch == mips ] |
| 186 *: Skip # Issue 13650 | 186 *: Skip # Issue 13650 |
| 187 | 187 |
| 188 [ $arch == arm ] | 188 [ $arch == arm ] |
| 189 *: Skip # Issue 13624 | 189 *: Skip # Issue 13624 |
| 190 | 190 |
| 191 [ $arch == simarm ] |
| 192 third_party/html5lib/test/tokenizer_test: Slow |
| 193 |
| 191 # Skip serialization test that explicitly has no library declaration in the | 194 # Skip serialization test that explicitly has no library declaration in the |
| 192 # test on Dartium, which requires all tests to have a library. | 195 # test on Dartium, which requires all tests to have a library. |
| 193 [ $compiler == none && ( $runtime == dartium || $runtime == drt ) ] | 196 [ $compiler == none && ( $runtime == dartium || $runtime == drt ) ] |
| 194 serialization/test/no_library_test: Skip # Expected Failure | 197 serialization/test/no_library_test: Skip # Expected Failure |
| 195 | 198 |
| 196 # Skip tests on the VM if the package depends on dart:html | 199 # Skip tests on the VM if the package depends on dart:html |
| 197 [ $runtime == vm ] | 200 [ $runtime == vm ] |
| 198 custom_element: Skip | 201 custom_element: Skip |
| 199 mdv: Skip | 202 mdv: Skip |
| 200 mutation_observer: Skip | 203 mutation_observer: Skip |
| 201 polymer_expressions/test/syntax_test: Skip | 204 polymer_expressions/test/syntax_test: Skip |
| 202 third_party/html5lib/test/browser/browser_test: Skip | 205 third_party/html5lib/test/browser/browser_test: Skip |
| 203 | 206 |
| 204 [ $runtime == safari || $runtime == chrome || $runtime == ie9 || $runtime == ff
|| $runtime == dartium || $runtime == drt ] | 207 [ $runtime == safari || $runtime == chrome || $runtime == ie9 || $runtime == ff
|| $runtime == dartium || $runtime == drt ] |
| 205 docgen/test/single_library_test: Skip # Uses dart:io | 208 docgen/test/single_library_test: Skip # Uses dart:io |
| 206 scheduled_test/test/scheduled_server_test: Skip # Uses dart:io | 209 scheduled_test/test/scheduled_server_test: Skip # Uses dart:io |
| 207 | 210 |
| 208 [ $browser || $runtime == vm ] | 211 [ $browser || $runtime == vm ] |
| 209 unittest/test/missing_tick_test: Fail, OK # This test should fail, not time out. | 212 unittest/test/missing_tick_test: Fail, OK # This test should fail, not time out. |
| 210 | 213 |
| 211 # Issue http://dartbug.com/12930 | 214 # Issue http://dartbug.com/12930 |
| 212 [ $runtime == vm ] | 215 [ $runtime == vm ] |
| 213 intl/test/message_extraction/message_extraction_test: Pass, Fail # Issue 12930 | 216 intl/test/message_extraction/message_extraction_test: Pass, Fail # Issue 12930 |
| 214 | 217 |
| 215 [ $compiler == none && $runtime == vm ] | 218 [ $compiler == none && $runtime == vm ] |
| 216 observe/test/observe_test: Pass, Fail # Issue 13543 | 219 observe/test/observe_test: Pass, Fail # Issue 13543 |
| 217 | 220 |
| 218 [ $compiler == none && $runtime == vm && $checked ] | 221 [ $compiler == none && $runtime == vm && $checked ] |
| 219 intl/test/message_extraction/failed_extraction_test: Pass, Fail # Issue 13543 | 222 intl/test/message_extraction/failed_extraction_test: Pass, Fail # Issue 13543 |
| OLD | NEW |