| 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 && $runtime == vm ] |
| 6 evaluate_activation_test/instance: RuntimeError # http://dartbug.com/20047 |
| 7 evaluate_activation_test/scope: RuntimeError # http://dartbug.com/20047 |
| 8 |
| 5 # Unexpected number format | 9 # Unexpected number format |
| 6 [ $system == windows ] | 10 [ $system == windows ] |
| 7 code_test: Skip | 11 code_test: Skip |
| 8 | 12 |
| 9 # Issue 23201 | 13 # Issue 23201 |
| 10 [ $system == windows ] | 14 [ $system == windows ] |
| 11 debugging_test: Skip | 15 debugging_test: Skip |
| 12 | 16 |
| 13 # Tests that depend on token positions (which differ in release mode). | 17 # Tests that depend on token positions (which differ in release mode). |
| 14 [ $mode == release ] | 18 [ $mode == release ] |
| 15 debugging_test: Skip | 19 debugging_test: Skip |
| 16 | 20 |
| 17 # Disable on simulators. | 21 # Disable on simulators. |
| 18 [ $arch == simarm || $arch == simmips || $arch == simarm64] | 22 [ $arch == simarm || $arch == simmips || $arch == simarm64] |
| 19 *: Skip # Slow | 23 *: SkipSlow |
| 20 | 24 |
| 21 # The transformations of dart2dart are not guaranteed to preserve the | 25 # The transformations of dart2dart are not guaranteed to preserve the |
| 22 # state/properties of the VM that the Observatory tests are inspecting. | 26 # state/properties of the VM that the Observatory tests are inspecting. |
| 23 [ $compiler == dart2dart ] | 27 [ $compiler == dart2dart ] |
| 24 *: Skip | 28 *: Skip |
| 25 | 29 |
| 26 # All tests use dart:io | 30 # All tests use dart:io |
| 27 [ $browser || $compiler == dart2js ] | 31 [ $browser || $compiler == dart2js ] |
| 28 *: SkipByDesign | 32 *: SkipByDesign |
| OLD | NEW |