| 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 isolate_lifecycle_test: Pass, RuntimeError # Issue 24174 |
| 8 | 9 |
| 9 # Disable on simulators. | 10 # Disable on simulators. |
| 10 [ $arch == simarm || $arch == simmips || $arch == simarm64] | 11 [ $arch == simarm || $arch == simmips || $arch == simarm64] |
| 11 *: SkipSlow | 12 *: SkipSlow |
| 12 | 13 |
| 13 # All tests use dart:io | 14 # All tests use dart:io |
| 14 [ $browser || $compiler == dart2js ] | 15 [ $browser || $compiler == dart2js ] |
| 15 *: SkipByDesign | 16 *: SkipByDesign |
| 16 | 17 |
| 17 # Tests with known analyzer issues | 18 # Tests with known analyzer issues |
| (...skipping 16 matching lines...) Expand all Loading... |
| 34 # Service protocol is not supported in product mode. | 35 # Service protocol is not supported in product mode. |
| 35 [ $mode == product ] | 36 [ $mode == product ] |
| 36 *: SkipByDesign | 37 *: SkipByDesign |
| 37 | 38 |
| 38 # Service protocol is not supported when running a full application snapshot. | 39 # Service protocol is not supported when running a full application snapshot. |
| 39 [ ($runtime == dart_product) ] | 40 [ ($runtime == dart_product) ] |
| 40 *: SkipByDesign | 41 *: SkipByDesign |
| 41 | 42 |
| 42 [ $compiler == dart2analyzer ] | 43 [ $compiler == dart2analyzer ] |
| 43 evaluate_activation_in_method_class_test: CompileTimeError # Issue 24478 | 44 evaluate_activation_in_method_class_test: CompileTimeError # Issue 24478 |
| OLD | NEW |