| 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 watcher/test/no_subscription_test: Fail # Issue 13705. |
| 193 |
| 191 [ $arch == simarm || $arch == simmips ] | 194 [ $arch == simarm || $arch == simmips ] |
| 192 third_party/html5lib/test/tokenizer_test: Pass, Slow | 195 third_party/html5lib/test/tokenizer_test: Pass, Slow |
| 193 | 196 |
| 194 # Skip serialization test that explicitly has no library declaration in the | 197 # Skip serialization test that explicitly has no library declaration in the |
| 195 # test on Dartium, which requires all tests to have a library. | 198 # test on Dartium, which requires all tests to have a library. |
| 196 [ $compiler == none && ( $runtime == dartium || $runtime == drt ) ] | 199 [ $compiler == none && ( $runtime == dartium || $runtime == drt ) ] |
| 197 serialization/test/no_library_test: Skip # Expected Failure | 200 serialization/test/no_library_test: Skip # Expected Failure |
| 198 | 201 |
| 199 # Skip tests on the VM if the package depends on dart:html | 202 # Skip tests on the VM if the package depends on dart:html |
| 200 [ $runtime == vm ] | 203 [ $runtime == vm ] |
| (...skipping 12 matching lines...) Expand all Loading... |
| 213 | 216 |
| 214 # Issue http://dartbug.com/12930 | 217 # Issue http://dartbug.com/12930 |
| 215 [ $runtime == vm ] | 218 [ $runtime == vm ] |
| 216 intl/test/message_extraction/message_extraction_test: Pass, Fail # Issue 12930 | 219 intl/test/message_extraction/message_extraction_test: Pass, Fail # Issue 12930 |
| 217 | 220 |
| 218 [ $compiler == none && $runtime == vm ] | 221 [ $compiler == none && $runtime == vm ] |
| 219 observe/test/observe_test: Pass, Fail # Issue 13543 | 222 observe/test/observe_test: Pass, Fail # Issue 13543 |
| 220 | 223 |
| 221 [ $compiler == none && $runtime == vm && $checked ] | 224 [ $compiler == none && $runtime == vm && $checked ] |
| 222 intl/test/message_extraction/failed_extraction_test: Pass, Fail # Issue 13543 | 225 intl/test/message_extraction/failed_extraction_test: Pass, Fail # Issue 13543 |
| OLD | NEW |