OLD | NEW |
1 # Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2014, 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 [ ($compiler == none || $compiler == precompiler) && ($runtime == vm || $runtime
== dart_precompiled) ] | 5 [ ($compiler == none || $compiler == precompiler) && ($runtime == vm || $runtime
== dart_precompiled) ] |
6 evaluate_activation_test/instance: RuntimeError # http://dartbug.com/20047 | 6 evaluate_activation_test/instance: RuntimeError # http://dartbug.com/20047 |
7 evaluate_activation_test/scope: RuntimeError # http://dartbug.com/20047 | 7 evaluate_activation_test/scope: RuntimeError # http://dartbug.com/20047 |
8 | 8 |
9 # Disable on simulators. | 9 # Disable on simulators. |
10 [ $arch == simarm || $arch == simmips || $arch == simarm64] | 10 [ $arch == simarm || $arch == simmips || $arch == simarm64] |
11 *: SkipSlow | 11 *: SkipSlow |
12 | 12 |
13 # All tests use dart:io | 13 # All tests use dart:io |
14 [ $browser || $compiler == dart2js ] | 14 [ $browser || $compiler == dart2js ] |
15 *: SkipByDesign | 15 *: SkipByDesign |
16 | 16 |
17 # Tests with known analyzer issues | 17 # Tests with known analyzer issues |
18 [ $compiler == dart2analyzer ] | 18 [ $compiler == dart2analyzer ] |
19 developer_extension_test: SkipByDesign | 19 developer_extension_test: SkipByDesign |
| 20 *: StaticWarning # https://github.com/dart-lang/observe/issues/85 |
| 21 address_mapper_test: Pass # https://github.com/dart-lang/observe/issues/85 |
| 22 command_test: Pass # https://github.com/dart-lang/observe/issues/85 |
| 23 read_stream_test: Pass # https://github.com/dart-lang/observe/issues/85 |
20 | 24 |
21 [ $arch == arm ] | 25 [ $arch == arm ] |
22 process_service_test: Pass, Fail # Issue 24344 | 26 process_service_test: Pass, Fail # Issue 24344 |
23 | 27 |
24 [ ($noopt || $compiler == precompiler) ] | 28 [ ($noopt || $compiler == precompiler) ] |
25 *: Skip # Issue 24651 | 29 *: Skip # Issue 24651 |
26 | 30 |
27 [ $runtime == vm ] | 31 [ $runtime == vm ] |
28 coverage_test: Pass, Slow | 32 coverage_test: Pass, Slow |
29 | 33 |
30 # Service protocol is not supported in product mode. | 34 # Service protocol is not supported in product mode. |
31 [ $mode == product ] | 35 [ $mode == product ] |
32 *: SkipByDesign | 36 *: SkipByDesign |
33 | 37 |
34 # Service protocol is not supported when running a full application snapshot. | 38 # Service protocol is not supported when running a full application snapshot. |
35 [ ($runtime == dart_product) ] | 39 [ ($runtime == dart_product) ] |
36 *: SkipByDesign | 40 *: SkipByDesign |
OLD | NEW |