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