| 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 cc/CodeImmutability: Crash | 8 cc/CodeImmutability: Crash |
| 9 | 9 |
| 10 # Negative tests of VerifiedMemory should crash iff in DEBUG mode. |
| 11 # TODO(koda): Improve support for negative tests. |
| 12 [ $mode == debug ] |
| 13 cc/VerifyImplicit_Crash: Crash |
| 14 cc/VerifyExplicit_Crash: Crash |
| 15 |
| 10 cc/SNPrint_BadArgs: Skip | 16 cc/SNPrint_BadArgs: Skip |
| 11 | 17 |
| 12 # These tests are skipped because of the workaround to open issue 8594. | 18 # These tests are skipped because of the workaround to open issue 8594. |
| 13 cc/Debug_StackTraceDump1: Skip | 19 cc/Debug_StackTraceDump1: Skip |
| 14 cc/Debug_StackTraceDump2: Skip | 20 cc/Debug_StackTraceDump2: Skip |
| 15 | 21 |
| 16 # Flaky on buildbot. Issue 5133 and 10409. | 22 # Flaky on buildbot. Issue 5133 and 10409. |
| 17 cc/Sleep: Pass, Fail | 23 cc/Sleep: Pass, Fail |
| 18 | 24 |
| 19 [ $arch == x64 ] | 25 [ $arch == x64 ] |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 cc/JSON_JSONStream_Options: Crash, Pass # Issue 19328 | 85 cc/JSON_JSONStream_Options: Crash, Pass # Issue 19328 |
| 80 | 86 |
| 81 [ $arch == mips && $mode == debug ] | 87 [ $arch == mips && $mode == debug ] |
| 82 cc/FindCodeObject: Skip # Takes more than 8 minutes. Issue 17440 | 88 cc/FindCodeObject: Skip # Takes more than 8 minutes. Issue 17440 |
| 83 | 89 |
| 84 [ $compiler == dartanalyzer || $compiler == dart2analyzer ] | 90 [ $compiler == dartanalyzer || $compiler == dart2analyzer ] |
| 85 dart/optimized_stacktrace_test: StaticWarning | 91 dart/optimized_stacktrace_test: StaticWarning |
| 86 | 92 |
| 87 [ $compiler == none && $runtime == ContentShellOnAndroid ] | 93 [ $compiler == none && $runtime == ContentShellOnAndroid ] |
| 88 dart/byte_array_test: RuntimeError # Issue 17612 | 94 dart/byte_array_test: RuntimeError # Issue 17612 |
| OLD | NEW |