Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(51)

Side by Side Diff: pkg/pkg.status

Issue 2679013003: Update status for strong mode and analyzer tests (Closed)
Patch Set: Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | tests/utils/utils.status » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 18 matching lines...) Expand all
29 29
30 [ $runtime != vm || $mode != release || $system == windows ] 30 [ $runtime != vm || $mode != release || $system == windows ]
31 front_end/test/fasta/*: Skip 31 front_end/test/fasta/*: Skip
32 32
33 [ $runtime == vm && $mode == release && $system == linux ] 33 [ $runtime == vm && $mode == release && $system == linux ]
34 kernel/test/closures_test: Slow, Pass 34 kernel/test/closures_test: Slow, Pass
35 35
36 [ $runtime != vm || $mode != release || $system != linux ] 36 [ $runtime != vm || $mode != release || $system != linux ]
37 kernel/test/closures_test: Skip 37 kernel/test/closures_test: Skip
38 38
39 # Don't analyze tests in strong mode yet
40 [ $compiler == dart2analyzer && $builder_tag == strong ]
41 *: Skip # Issue 28649
42
39 # Analyze dev_compiler but don't run its tests 43 # Analyze dev_compiler but don't run its tests
40 [ $compiler != dart2analyzer ] 44 [ $compiler != dart2analyzer ]
41 dev_compiler/test/*: Skip 45 dev_compiler/test/*: Skip
42 46
43 [ $compiler == dart2analyzer ] 47 [ $compiler == dart2analyzer ]
44 dev_compiler/test/options/*: SkipByDesign 48 dev_compiler/test/options/*: SkipByDesign
45 49
46 [ $compiler == none && ($runtime == drt || $runtime == dartium) ] 50 [ $compiler == none && ($runtime == drt || $runtime == dartium) ]
47 mutation_observer: Skip # Issue 21149 51 mutation_observer: Skip # Issue 21149
48 unittest/*: Skip # Issue 21949 52 unittest/*: Skip # Issue 21949
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 [ $browser || $jscl ] 162 [ $browser || $jscl ]
159 kernel/test/*: SkipByDesign # Uses dart:io and bigints. 163 kernel/test/*: SkipByDesign # Uses dart:io and bigints.
160 164
161 [ $runtime == vm && ($arch == simarm64 || $arch == simarm || $arch == simarmv6 | | $arch == simarmv5te || $arch == simmips || $arch == armv6 || $arch == armv5te) ] 165 [ $runtime == vm && ($arch == simarm64 || $arch == simarm || $arch == simarmv6 | | $arch == simarmv5te || $arch == simmips || $arch == armv6 || $arch == armv5te) ]
162 # Timeout. These are not unit tests. They do not run efficiently on our 166 # Timeout. These are not unit tests. They do not run efficiently on our
163 # simulator or low-end devices. 167 # simulator or low-end devices.
164 *: Skip 168 *: Skip
165 169
166 [ $runtime == vm ] 170 [ $runtime == vm ]
167 analyzer/test/file_system/physical_resource_provider_test: Pass, Fail # Issue 25 472 171 analyzer/test/file_system/physical_resource_provider_test: Pass, Fail # Issue 25 472
172 analyzer_cli/test/embedder_test: RuntimeError # Issue 28653
168 # Skip tests on the VM if the package depends on dart:html 173 # Skip tests on the VM if the package depends on dart:html
169 mutation_observer: Skip 174 mutation_observer: Skip
170 175
171 [ $compiler == dart2js && $runtime == chrome && $system == macos ] 176 [ $compiler == dart2js && $runtime == chrome && $system == macos ]
172 third_party/di_tests/di_test: Pass, Slow # Issue 22896 177 third_party/di_tests/di_test: Pass, Slow # Issue 22896
173 178
174 [ $compiler == dart2js && $cps_ir && $host_checked ] 179 [ $compiler == dart2js && $cps_ir && $host_checked ]
175 analyzer/test/dart/ast/ast_test: Crash # Issue 24485 180 analyzer/test/dart/ast/ast_test: Crash # Issue 24485
176 analyzer/test/dart/ast/visitor_test: Crash # Issue 24485 181 analyzer/test/dart/ast/visitor_test: Crash # Issue 24485
177 analyzer/test/dart/element/element_test: Crash # Issue 24485 182 analyzer/test/dart/element/element_test: Crash # Issue 24485
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
230 analyzer/test/src/task/yaml_test: Crash # Issue 24485 235 analyzer/test/src/task/yaml_test: Crash # Issue 24485
231 236
232 [ $runtime == dart_precompiled ] 237 [ $runtime == dart_precompiled ]
233 *: SkipByDesign # The pkg test framework imports dart:mirrors. 238 *: SkipByDesign # The pkg test framework imports dart:mirrors.
234 239
235 [ $compiler == dart2js && $cps_ir && $checked ] 240 [ $compiler == dart2js && $cps_ir && $checked ]
236 *: Skip # `assert` not implemented, about 75% tests crash 241 *: Skip # `assert` not implemented, about 75% tests crash
237 242
238 [ $compiler == none ] 243 [ $compiler == none ]
239 kernel/test/closures_test: Fail 244 kernel/test/closures_test: Fail
OLDNEW
« no previous file with comments | « no previous file | tests/utils/utils.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698