| 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 # These tests are expected to crash on all platforms. | 5 # These tests are expected to crash on all platforms. |
| 6 cc/ArrayNew_Overflow_Crash: Crash | 6 cc/ArrayNew_Overflow_Crash: Crash |
| 7 cc/AllocGeneric_Overflow: Crash | 7 cc/AllocGeneric_Overflow: Crash |
| 8 | 8 |
| 9 cc/SNPrint_BadArgs: Skip | 9 cc/SNPrint_BadArgs: Skip |
| 10 | 10 |
| 11 # These tests are skipped because of the workaround to open issue 8594. | 11 # These tests are skipped because of the workaround to open issue 8594. |
| 12 cc/Debug_StackTraceDump1: Skip | 12 cc/Debug_StackTraceDump1: Skip |
| 13 cc/Debug_StackTraceDump2: Skip | 13 cc/Debug_StackTraceDump2: Skip |
| 14 | 14 |
| 15 # Flaky on buildbot. Issue 5133 and 10409. | 15 # Flaky on buildbot. Issue 5133 and 10409. |
| 16 cc/Sleep: Pass, Fail | 16 cc/Sleep: Pass, Fail |
| 17 | 17 |
| 18 [ $arch == x64 ] | 18 [ $arch == x64 ] |
| 19 cc/IsolateInterrupt: Skip | 19 cc/IsolateInterrupt: Skip |
| 20 | 20 |
| 21 # 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 |
| 22 # runtime/tests/vm/dart. | 22 # runtime/tests/vm/dart. |
| 23 [ $system == windows ] | 23 [ $system == windows ] |
| 24 cc/Dart2JSCompileAll: Skip | 24 cc/Dart2JSCompileAll: Skip |
| 25 cc/ExternalizeConstantStrings: Skip | 25 cc/ExternalizeConstantStrings: Skip |
| 26 | 26 |
| 27 [ $runtime == drt ] | |
| 28 dart/isolate_mirror_local_test: Skip | |
| 29 | |
| 30 [ $compiler == dart2js ] | 27 [ $compiler == dart2js ] |
| 28 dart/mirrored_compilation_error_test: Skip # VM-specific flag |
| 31 dart/isolate_mirror*: Skip # compilers not aware of dart:mirrors | 29 dart/isolate_mirror*: Skip # compilers not aware of dart:mirrors |
| 32 dart/byte_array_test: Skip # compilers not aware of byte arrays | 30 dart/byte_array_test: Skip # compilers not aware of byte arrays |
| 33 dart/byte_array_optimized_test: Skip # compilers not aware of byte arrays | 31 dart/byte_array_optimized_test: Skip # compilers not aware of byte arrays |
| 34 dart/simd128float32_array_test: Skip # compilers not aware of Simd128 | 32 dart/simd128float32_array_test: Skip # compilers not aware of Simd128 |
| 35 dart/simd128float32_test: Skip # compilers not aware of Simd128 | 33 dart/simd128float32_test: Skip # compilers not aware of Simd128 |
| 36 dart/isolate_unhandled*: Skip | 34 dart/isolate_unhandled*: Skip |
| 37 | 35 |
| 38 [ $compiler == dart2js ] | 36 [ $compiler == dart2js ] |
| 39 # The source positions do not match with dart2js. | 37 # The source positions do not match with dart2js. |
| 40 dart/optimized_stacktrace_test: RuntimeError | 38 dart/optimized_stacktrace_test: RuntimeError |
| (...skipping 11 matching lines...) Expand all Loading... |
| 52 dart/isolate_mirror_local_test: Skip | 50 dart/isolate_mirror_local_test: Skip |
| 53 | 51 |
| 54 [ $arch == simmips || $arch == mips ] | 52 [ $arch == simmips || $arch == mips ] |
| 55 dart/isolate_mirror_local_test: Pass, Crash | 53 dart/isolate_mirror_local_test: Pass, Crash |
| 56 | 54 |
| 57 [ $arch == mips ] | 55 [ $arch == mips ] |
| 58 cc/Sdc1Ldc1: Crash # Illegal instructions | 56 cc/Sdc1Ldc1: Crash # Illegal instructions |
| 59 cc/Cop1CvtDL: Crash | 57 cc/Cop1CvtDL: Crash |
| 60 cc/Cop1CvtDL_neg: Crash | 58 cc/Cop1CvtDL_neg: Crash |
| 61 | 59 |
| 60 [ $compiler == none && $runtime == drt ] |
| 61 dart/isolate_mirror_local_test: Skip |
| 62 |
| 62 [ $compiler == none && $runtime == dartium ] | 63 [ $compiler == none && $runtime == dartium ] |
| 63 dart/isolate_mirror_local_test: Fail # Issue 13719: Please triage this failure. | 64 dart/isolate_mirror_local_test: Fail # Issue 13719: Please triage this failure. |
| 64 | 65 |
| 65 [ $compiler == none && ($runtime == drt || $runtime == dartium) ] | 66 [ $compiler == none && ($runtime == drt || $runtime == dartium) ] |
| 66 dart/isolate_mirror_remote_test: Fail # Issue 13921 | 67 dart/isolate_mirror_remote_test: Fail # Issue 13921 |
| 67 dart/isolate_unhandled_exception_test: Fail # Issue 13921 | 68 dart/isolate_unhandled_exception_test: Fail # Issue 13921 |
| 69 dart/mirrored_compilation_error_test: Skip # Can't pass needed VM flag |
| OLD | NEW |