| 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 [ $compiler == dart2js && $host_checked ] | 5 [ $compiler == dart2js && $host_checked ] |
| 6 dummy_compiler_test: Crash # Issue 22809 | 6 dummy_compiler_test: Crash # Issue 22809 |
| 7 | 7 |
| 8 [ $compiler == dart2js ] | 8 [ $compiler == dart2js ] |
| 9 dummy_compiler_test: Slow, Pass | 9 dummy_compiler_test: Slow, Pass |
| 10 recursive_import_test: Slow, Pass | 10 recursive_import_test: Slow, Pass |
| 11 source_mirrors_test: Slow, Pass | 11 source_mirrors_test: Slow, Pass |
| 12 | 12 |
| 13 [ $compiler == dart2js && $browser ] | 13 [ $compiler == dart2js && $browser ] |
| 14 *: Skip | 14 *: Skip |
| 15 | 15 |
| 16 [ $compiler == none && $runtime != vm ] | 16 [ ($compiler == none || $compiler == precompiler) && $runtime != vm ] |
| 17 dart2js_test: SkipByDesign # Uses dart:io. | 17 dart2js_test: SkipByDesign # Uses dart:io. |
| 18 | 18 |
| 19 | 19 |
| 20 [ $compiler == dart2js && $mode == debug ] | 20 [ $compiler == dart2js && $mode == debug ] |
| 21 dummy_compiler_test: Slow, Pass | 21 dummy_compiler_test: Slow, Pass |
| 22 | 22 |
| 23 [ $compiler == none && $runtime == ContentShellOnAndroid ] | 23 [ ($compiler == none || $compiler == precompiler) && $runtime == ContentShellOnA
ndroid ] |
| 24 dummy_compiler_test: Pass, RuntimeError # Issue 17662 | 24 dummy_compiler_test: Pass, RuntimeError # Issue 17662 |
| 25 recursive_import_test: Pass, RuntimeError # Issue 17662 | 25 recursive_import_test: Pass, RuntimeError # Issue 17662 |
| 26 source_mirrors_test: Pass, RuntimeError # Issue 17662 | 26 source_mirrors_test: Pass, RuntimeError # Issue 17662 |
| 27 | 27 |
| 28 [ $compiler == dart2js && $cps_ir ] | 28 [ $compiler == dart2js && $cps_ir ] |
| 29 dummy_compiler_test: Crash # (switch (function.na... continue to a labeled swit
ch case | 29 dummy_compiler_test: Crash # (switch (function.na... continue to a labeled swit
ch case |
| 30 recursive_import_test: Crash # (switch (function.na... continue to a labeled sw
itch case | 30 recursive_import_test: Crash # (switch (function.na... continue to a labeled sw
itch case |
| 31 source_mirrors_test: Crash, Slow # (switch (function.na... continue to a labele
d switch case | 31 source_mirrors_test: Crash, Slow # (switch (function.na... continue to a labele
d switch case |
| 32 | 32 |
| 33 [ $noopt ] | 33 [ ($noopt || $compiler == precompiler) ] |
| 34 source_mirrors_test: SkipByDesign # Imports dart:mirrors | 34 source_mirrors_test: SkipByDesign # Imports dart:mirrors |
| OLD | NEW |