| OLD | NEW |
| 1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2012, 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 [ $browser ] | 5 [ $browser ] |
| 6 # Skip tests that uses dart:io | 6 # Skip tests that uses dart:io |
| 7 build_dart: Skip | 7 build_dart: Skip |
| 8 build_dart_simple: Skip | 8 build_dart_simple: Skip |
| 9 sample_extension: Skip | 9 sample_extension: Skip |
| 10 | 10 |
| 11 [ $compiler == dart2js && $runtime == none ] | 11 [ $compiler == dart2js && $runtime == none ] |
| 12 *: Fail, Pass # TODO(ahe): Triage these tests. | 12 *: Fail, Pass # TODO(ahe): Triage these tests. |
| 13 | 13 |
| 14 [ $compiler == dart2js && $cps_ir && $checked ] | 14 [ $compiler == dart2js && $cps_ir && $checked ] |
| 15 sample_extension: Crash # Unable to compile UnsupportedError.message. | 15 sample_extension: Crash # Unable to compile UnsupportedError.message. |
| 16 | 16 |
| 17 [ $compiler == dart2analyzer ] | 17 [ $compiler == dart2analyzer ] |
| 18 build_dart: Skip | 18 build_dart: Skip |
| 19 | 19 |
| 20 [ $arch == ia32 && $system == windows ] | 20 [ $arch == ia32 && $system == windows ] |
| 21 sample_extension/test/sample_extension_app_snapshot_test: RuntimeError # Issue 2
7786 | 21 sample_extension/test/sample_extension_app_snapshot_test: RuntimeError # Issue 2
7786 |
| 22 | 22 |
| 23 [ $arch == arm ] | 23 [ $arch == arm ] |
| 24 sample_extension/test/*: Skip # Issue 14705 | 24 sample_extension/test/*: Skip # Issue 14705 |
| 25 | 25 |
| 26 [ $noopt || $runtime == dart_precompiled || $runtime == dart_app ] | 26 [ $compiler == precompiler ] |
| 27 sample_extension: Skip # Platform.executable | 27 sample_extension/test/*: Skip # These tests attempt to spawn another script usin
g the precompiled runtime. |
| 28 |
| 29 [ $runtime == dart_app ] |
| 30 sample_extension/test/*: Skip # Shared use of a temp directory |
| OLD | NEW |