| 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 |
| 11 */*/*/*/packages/*/*: Skip | 11 */*/*/*/packages/*/*: Skip |
| 12 */*/*/*/*/packages/*/*: Skip | 12 */*/*/*/*/packages/*/*: Skip |
| 13 | 13 |
| 14 # Analyzer2dart is not maintained anymore. | 14 # Analyzer2dart is not maintained anymore. |
| 15 analyzer2dart/test/*: Skip | 15 analyzer2dart/test/*: Skip |
| 16 | 16 |
| 17 dart_messages/test/dart_messages_test: Skip # Requires a package root. | 17 dart_messages/test/dart_messages_test: Skip # Requires a package root. |
| 18 | 18 |
| 19 # Skip dev_compiler codegen tests | 19 # Skip dev_compiler codegen tests |
| 20 dev_compiler/test/codegen/*: Skip | 20 dev_compiler/test/codegen/*: Skip |
| 21 | 21 |
| 22 [ $runtime == vm && $mode == release && $system == linux ] |
| 23 kernel/test/closures_test: Slow, Pass |
| 24 |
| 25 [ $runtime != vm || $mode != release || $system != linux ] |
| 26 kernel/test/closures_test: Skip |
| 27 |
| 22 # Analyze dev_compiler but don't run its tests | 28 # Analyze dev_compiler but don't run its tests |
| 23 [ $compiler != dart2analyzer ] | 29 [ $compiler != dart2analyzer ] |
| 24 dev_compiler/test/*: Skip | 30 dev_compiler/test/*: Skip |
| 25 | 31 |
| 26 [ $compiler == dart2analyzer ] | 32 [ $compiler == dart2analyzer ] |
| 27 dev_compiler/gen/*: SkipByDesign | 33 dev_compiler/gen/*: SkipByDesign |
| 28 | 34 |
| 29 [ $compiler == none && ($runtime == drt || $runtime == dartium) ] | 35 [ $compiler == none && ($runtime == drt || $runtime == dartium) ] |
| 30 mutation_observer: Skip # Issue 21149 | 36 mutation_observer: Skip # Issue 21149 |
| 31 unittest/*: Skip # Issue 21949 | 37 unittest/*: Skip # Issue 21949 |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 195 analyzer/test/src/task/strong/checker_test: Crash # Issue 24485 | 201 analyzer/test/src/task/strong/checker_test: Crash # Issue 24485 |
| 196 analyzer/test/src/task/strong/inferred_type_test: Crash # Issue 24485 | 202 analyzer/test/src/task/strong/inferred_type_test: Crash # Issue 24485 |
| 197 analyzer/test/src/task/strong_mode_test: Crash # Issue 24485 | 203 analyzer/test/src/task/strong_mode_test: Crash # Issue 24485 |
| 198 analyzer/test/src/task/yaml_test: Crash # Issue 24485 | 204 analyzer/test/src/task/yaml_test: Crash # Issue 24485 |
| 199 | 205 |
| 200 [ $noopt || $runtime == dart_precompiled ] | 206 [ $noopt || $runtime == dart_precompiled ] |
| 201 *: SkipByDesign # The pkg test framework imports dart:mirrors. | 207 *: SkipByDesign # The pkg test framework imports dart:mirrors. |
| 202 | 208 |
| 203 [ $compiler == dart2js && $cps_ir && $checked ] | 209 [ $compiler == dart2js && $cps_ir && $checked ] |
| 204 *: Skip # `assert` not implemented, about 75% tests crash | 210 *: Skip # `assert` not implemented, about 75% tests crash |
| OLD | NEW |