| 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 20 matching lines...) Expand all Loading... |
| 31 dev_compiler/gen/*: SkipByDesign | 31 dev_compiler/gen/*: SkipByDesign |
| 32 | 32 |
| 33 # Anything in rasta is input to fasta unit tests and shouldn't be run as tests. | 33 # Anything in rasta is input to fasta unit tests and shouldn't be run as tests. |
| 34 front_end/test/fasta/rasta/*: SkipByDesign | 34 front_end/test/fasta/rasta/*: SkipByDesign |
| 35 | 35 |
| 36 # sdk_test would take too long to complete, and should be run in a different | 36 # sdk_test would take too long to complete, and should be run in a different |
| 37 # way. | 37 # way. |
| 38 front_end/test/fasta/sdk_test: SkipByDesign | 38 front_end/test/fasta/sdk_test: SkipByDesign |
| 39 | 39 |
| 40 front_end/test/fasta/bootstrap_test: Pass, Slow | 40 front_end/test/fasta/bootstrap_test: Pass, Slow |
| 41 front_end/test/fasta/compile_test: Pass, Slow | 41 front_end/test/fasta/compile_test: Fail, Slow # Issue 30244 |
| 42 front_end/test/fasta/strong_test: Pass, Slow | 42 front_end/test/fasta/strong_test: Pass, Slow |
| 43 front_end/test/fasta/outline_test: Pass, Slow | 43 front_end/test/fasta/outline_test: Pass, Slow |
| 44 front_end/test/fasta/ast_builder_test: Pass, Slow | 44 front_end/test/fasta/ast_builder_test: Pass, Slow |
| 45 | 45 |
| 46 # These are not tests but input for tests. | 46 # These are not tests but input for tests. |
| 47 kernel/testcases/*: Skip | 47 kernel/testcases/*: Skip |
| 48 | 48 |
| 49 front_end/test/fasta/analyze_test: Pass, Slow | 49 front_end/test/fasta/analyze_test: Pass, Slow |
| 50 | 50 |
| 51 kernel/test/closures_test: Slow, Pass | 51 kernel/test/closures_test: Slow, Pass |
| (...skipping 10 matching lines...) Expand all Loading... |
| 62 # Don't analyze tests in strong mode yet | 62 # Don't analyze tests in strong mode yet |
| 63 [ $compiler == dart2analyzer && $builder_tag == strong ] | 63 [ $compiler == dart2analyzer && $builder_tag == strong ] |
| 64 *: Skip # Issue 28649 | 64 *: Skip # Issue 28649 |
| 65 | 65 |
| 66 # Analyze dev_compiler but don't run its tests | 66 # Analyze dev_compiler but don't run its tests |
| 67 [ $compiler != dart2analyzer ] | 67 [ $compiler != dart2analyzer ] |
| 68 dev_compiler/test/*: Skip | 68 dev_compiler/test/*: Skip |
| 69 | 69 |
| 70 [ $compiler == dart2analyzer ] | 70 [ $compiler == dart2analyzer ] |
| 71 dev_compiler/test/options/*: SkipByDesign | 71 dev_compiler/test/options/*: SkipByDesign |
| 72 dev_compiler/test/codegen_test: MissingCompileTimeError # Issue 30245 |
| 72 | 73 |
| 73 [ $compiler == none && $runtime == drt ] | 74 [ $compiler == none && $runtime == drt ] |
| 74 mutation_observer: Skip # Issue 21149 | 75 mutation_observer: Skip # Issue 21149 |
| 75 unittest/*: Skip # Issue 21949 | 76 unittest/*: Skip # Issue 21949 |
| 76 lookup_map/*: SkipByDesign | 77 lookup_map/*: SkipByDesign |
| 77 front_end/*: SkipByDesign | 78 front_end/*: SkipByDesign |
| 78 | 79 |
| 79 [ $runtime == vm && $mode == debug ] | 80 [ $runtime == vm && $mode == debug ] |
| 80 analysis_server/test/completion_test: Pass, Slow | 81 analysis_server/test/completion_test: Pass, Slow |
| 81 | 82 |
| (...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 218 kernel/test/closures_test: Fail | 219 kernel/test/closures_test: Fail |
| 219 | 220 |
| 220 [ $runtime == vm ] | 221 [ $runtime == vm ] |
| 221 analyzer_cli/test/driver_test: Pass, Slow, Timeout | 222 analyzer_cli/test/driver_test: Pass, Slow, Timeout |
| 222 | 223 |
| 223 [ $runtime == vm && $system == windows ] | 224 [ $runtime == vm && $system == windows ] |
| 224 analyzer/test/src/task/strong/checker_test: Pass, Slow | 225 analyzer/test/src/task/strong/checker_test: Pass, Slow |
| 225 | 226 |
| 226 [ $browser ] | 227 [ $browser ] |
| 227 testing/test/analyze_test: SkipByDesign | 228 testing/test/analyze_test: SkipByDesign |
| OLD | NEW |