| 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 # When a spawned isolate throws an uncaught exception, we terminate the vm. | 5 # When a spawned isolate throws an uncaught exception, we terminate the vm. |
| 6 cc/RunLoop_ExceptionChild: Fail | 6 cc/RunLoop_ExceptionChild: Fail |
| 7 | 7 |
| 8 # This test is expected to crash on all platforms. | 8 # This test is expected to crash on all platforms. |
| 9 cc/SNPrint_BadArgs: Crash | 9 cc/SNPrint_BadArgs: Crash |
| 10 | 10 |
| 11 [ $arch == x64 ] | 11 [ $arch == x64 ] |
| 12 cc/IsolateInterrupt: Skip | 12 cc/IsolateInterrupt: Skip |
| 13 | 13 |
| 14 # The following section refers to the dart vm tests which live under | 14 # The following section refers to the dart vm tests which live under |
| 15 # runtime/tests/vm/dart. | 15 # runtime/tests/vm/dart. |
| 16 | 16 |
| 17 [ $system == windows ] | 17 [ $system == windows ] |
| 18 cc/Dart2JSCompileAll: Skip | 18 cc/Dart2JSCompileAll: Skip |
| 19 | 19 |
| 20 [ $runtime == drt ] | 20 [ $runtime == drt ] |
| 21 dart/import_map_test: Skip | 21 dart/import_map_test: Skip |
| 22 dart/isolate_mirror_local_test: Skip | 22 dart/isolate_mirror_local_test: Skip |
| 23 | 23 |
| 24 [ $compiler == dart2js || $compiler == frog || $compiler == dartc ] | 24 [ $compiler == dart2js || $compiler == frog || $compiler == dartc ] |
| 25 dart/import_map_test: Skip # compilers not aware of import maps. | 25 dart/import_map_test: Skip # compilers not aware of import maps. |
| 26 dart/isolate_mirror*: Skip # compilers not aware of dart:mirrors | 26 dart/isolate_mirror*: Skip # compilers not aware of dart:mirrors |
| 27 dart/byte_array_test: Skip # compilers not aware of byte arrays | 27 dart/byte_array_test: Skip # compilers not aware of byte arrays |
| 28 | 28 |
| 29 [ $compiler == dart2dart ] | 29 [ $compiler == dart2dart ] |
| 30 cc/*: Skip | 30 # Skip until we stabilize language tests. |
| 31 dart/byte_array_test: Fail | 31 *: Skip |
| 32 dart/import_map_test: Fail | |
| 33 dart/isolate_mirror_local_test: Crash | |
| 34 dart/isolate_mirror_remote_test: Crash | |
| 35 | 32 |
| 36 [ $arch == arm ] | 33 [ $arch == arm ] |
| 37 dart/*: Skip | 34 dart/*: Skip |
| 38 | 35 |
| 39 [ $arch == simarm ] | 36 [ $arch == simarm ] |
| 40 dart/*: Skip | 37 dart/*: Skip |
| OLD | NEW |