| 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 11 matching lines...) Expand all Loading... |
| 22 [ $runtime == vm && $mode == release && $system == linux ] | 22 [ $runtime == vm && $mode == release && $system == linux ] |
| 23 kernel/test/closures_test: Slow, Pass | 23 kernel/test/closures_test: Slow, Pass |
| 24 | 24 |
| 25 [ $runtime != vm || $mode != release || $system != linux ] | 25 [ $runtime != vm || $mode != release || $system != linux ] |
| 26 kernel/test/closures_test: Skip | 26 kernel/test/closures_test: Skip |
| 27 | 27 |
| 28 # Analyze dev_compiler but don't run its tests | 28 # Analyze dev_compiler but don't run its tests |
| 29 [ $compiler != dart2analyzer ] | 29 [ $compiler != dart2analyzer ] |
| 30 dev_compiler/test/*: Skip | 30 dev_compiler/test/*: Skip |
| 31 | 31 |
| 32 # Don't run the dev_compiler generated tests | 32 [ $compiler == dart2analyzer ] |
| 33 dev_compiler/gen/*: SkipByDesign | 33 dev_compiler/gen/*: SkipByDesign |
| 34 dev_compiler/test/options/*: SkipByDesign | 34 dev_compiler/test/options/*: SkipByDesign |
| 35 | 35 |
| 36 # Issue #28236 | 36 # Issue #28236 |
| 37 analysis_server/test/analysis/get_errors_test: StaticWarning | 37 analysis_server/test/analysis/get_errors_test: StaticWarning |
| 38 analysis_server/test/analysis/get_hover_test: StaticWarning | 38 analysis_server/test/analysis/get_hover_test: StaticWarning |
| 39 analysis_server/test/analysis/get_navigation_test: StaticWarning | 39 analysis_server/test/analysis/get_navigation_test: StaticWarning |
| 40 analysis_server/test/analysis/navigation_collector_test: StaticWarning | 40 analysis_server/test/analysis/navigation_collector_test: StaticWarning |
| 41 analysis_server/test/analysis/notification_analysis_options_test: StaticWarning | 41 analysis_server/test/analysis/notification_analysis_options_test: StaticWarning |
| 42 analysis_server/test/analysis/notification_analyzedFiles_test: StaticWarning | 42 analysis_server/test/analysis/notification_analyzedFiles_test: StaticWarning |
| (...skipping 452 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 495 analyzer/test/src/task/yaml_test: Crash # Issue 24485 | 495 analyzer/test/src/task/yaml_test: Crash # Issue 24485 |
| 496 | 496 |
| 497 [ $noopt || $runtime == dart_precompiled ] | 497 [ $noopt || $runtime == dart_precompiled ] |
| 498 *: SkipByDesign # The pkg test framework imports dart:mirrors. | 498 *: SkipByDesign # The pkg test framework imports dart:mirrors. |
| 499 | 499 |
| 500 [ $compiler == dart2js && $cps_ir && $checked ] | 500 [ $compiler == dart2js && $cps_ir && $checked ] |
| 501 *: Skip # `assert` not implemented, about 75% tests crash | 501 *: Skip # `assert` not implemented, about 75% tests crash |
| 502 | 502 |
| 503 [ $compiler == none ] | 503 [ $compiler == none ] |
| 504 kernel/test/closures_test: Fail | 504 kernel/test/closures_test: Fail |
| OLD | NEW |