| 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 | 11 |
| 12 cc/SNPrint_BadArgs: Skip | 12 cc/SNPrint_BadArgs: Skip |
| 13 | 13 |
| 14 # TODO(floitsch): remove once dart2js is fixed and merged into lib_v1 |
| 15 cc/Dart2JSCompileAll: Fail |
| 16 |
| 14 [ $arch == x64 ] | 17 [ $arch == x64 ] |
| 15 cc/IsolateInterrupt: Skip | 18 cc/IsolateInterrupt: Skip |
| 16 | 19 |
| 17 [ $system == windows && $mode == debug ] | 20 [ $system == windows && $mode == debug ] |
| 18 cc/Sleep: Pass, Fail # Flaky on buildbot. Issue 5133. | 21 cc/Sleep: Pass, Fail # Flaky on buildbot. Issue 5133. |
| 19 | 22 |
| 20 # The following section refers to the dart vm tests which live under | 23 # The following section refers to the dart vm tests which live under |
| 21 # runtime/tests/vm/dart. | 24 # runtime/tests/vm/dart. |
| 22 | 25 |
| 23 [ $system == windows ] | 26 [ $system == windows ] |
| 24 cc/Dart2JSCompileAll: Skip | 27 cc/Dart2JSCompileAll: Skip |
| 25 | 28 |
| 26 [ $runtime == drt ] | 29 [ $runtime == drt ] |
| 27 dart/isolate_mirror_local_test: Skip | 30 dart/isolate_mirror_local_test: Skip |
| 28 | 31 |
| 29 [ $compiler == dart2js || $compiler == dartc ] | 32 [ $compiler == dart2js || $compiler == dartc ] |
| 30 dart/isolate_mirror*: Skip # compilers not aware of dart:mirrors | 33 dart/isolate_mirror*: Skip # compilers not aware of dart:mirrors |
| 31 dart/byte_array_test: Skip # compilers not aware of byte arrays | 34 dart/byte_array_test: Skip # compilers not aware of byte arrays |
| 32 | 35 |
| 33 [ $compiler == dart2dart ] | 36 [ $compiler == dart2dart ] |
| 34 # Skip until we stabilize language tests. | 37 # Skip until we stabilize language tests. |
| 35 *: Skip | 38 *: Skip |
| 36 | 39 |
| 37 [ $arch == arm ] | 40 [ $arch == arm ] |
| 38 dart/*: Skip | 41 dart/*: Skip |
| 39 | 42 |
| 40 [ $arch == simarm ] | 43 [ $arch == simarm ] |
| 41 dart/*: Skip | 44 dart/*: Skip |
| OLD | NEW |