| 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 # These tests are expected to crash on all platforms. | 8 # These tests are expected to crash on all platforms. |
| 9 cc/ArrayNew_Overflow_Crash: Crash | 9 cc/ArrayNew_Overflow_Crash: Crash |
| 10 cc/AllocGeneric_Overflow: Crash | 10 cc/AllocGeneric_Overflow: Crash |
| 11 |
| 12 [ $system == linux || $system == windows ] |
| 13 cc/SNPrint_BadArgs: Skip |
| 14 |
| 15 [ $system == mac ] |
| 11 cc/SNPrint_BadArgs: Crash | 16 cc/SNPrint_BadArgs: Crash |
| 12 | 17 |
| 13 [ $arch == x64 ] | 18 [ $arch == x64 ] |
| 14 cc/IsolateInterrupt: Skip | 19 cc/IsolateInterrupt: Skip |
| 15 | 20 |
| 16 # The following section refers to the dart vm tests which live under | 21 # The following section refers to the dart vm tests which live under |
| 17 # runtime/tests/vm/dart. | 22 # runtime/tests/vm/dart. |
| 18 | 23 |
| 19 [ $system == windows ] | 24 [ $system == windows ] |
| 20 cc/Dart2JSCompileAll: Skip | 25 cc/Dart2JSCompileAll: Skip |
| 21 | 26 |
| 22 [ $runtime == drt ] | 27 [ $runtime == drt ] |
| 23 dart/import_map_test: Skip | 28 dart/import_map_test: Skip |
| 24 dart/isolate_mirror_local_test: Skip | 29 dart/isolate_mirror_local_test: Skip |
| 25 | 30 |
| 26 [ $compiler == dart2js || $compiler == frog || $compiler == dartc ] | 31 [ $compiler == dart2js || $compiler == frog || $compiler == dartc ] |
| 27 dart/import_map_test: Skip # compilers not aware of import maps. | 32 dart/import_map_test: Skip # compilers not aware of import maps. |
| 28 dart/isolate_mirror*: Skip # compilers not aware of dart:mirrors | 33 dart/isolate_mirror*: Skip # compilers not aware of dart:mirrors |
| 29 dart/byte_array_test: Skip # compilers not aware of byte arrays | 34 dart/byte_array_test: Skip # compilers not aware of byte arrays |
| 30 | 35 |
| 31 [ $compiler == dart2dart ] | 36 [ $compiler == dart2dart ] |
| 32 # Skip until we stabilize language tests. | 37 # Skip until we stabilize language tests. |
| 33 *: Skip | 38 *: Skip |
| 34 | 39 |
| 35 [ $arch == arm ] | 40 [ $arch == arm ] |
| 36 dart/*: Skip | 41 dart/*: Skip |
| 37 | 42 |
| 38 [ $arch == simarm ] | 43 [ $arch == simarm ] |
| 39 dart/*: Skip | 44 dart/*: Skip |
| OLD | NEW |