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