| 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 cc/SNPrint_BadArgs: Skip | 10 cc/SNPrint_BadArgs: Skip |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 dart/byte_array_optimized_test: Skip # compilers not aware of byte arrays | 56 dart/byte_array_optimized_test: Skip # compilers not aware of byte arrays |
| 57 dart/simd128float32_array_test: Skip # compilers not aware of Simd128 | 57 dart/simd128float32_array_test: Skip # compilers not aware of Simd128 |
| 58 dart/simd128float32_test: Skip # compilers not aware of Simd128 | 58 dart/simd128float32_test: Skip # compilers not aware of Simd128 |
| 59 | 59 |
| 60 [ $compiler == dart2js ] | 60 [ $compiler == dart2js ] |
| 61 # The source positions do not match with dart2js. | 61 # The source positions do not match with dart2js. |
| 62 dart/optimized_stacktrace_test: RuntimeError | 62 dart/optimized_stacktrace_test: RuntimeError |
| 63 | 63 |
| 64 # Methods can be missing in dart2js stack traces due to inlining. Also when | 64 # Methods can be missing in dart2js stack traces due to inlining. Also when |
| 65 # minifying they can be renamed, which is issue 7953. | 65 # minifying they can be renamed, which is issue 7953. |
| 66 dart/inline_stack_frame_test: RuntimeError # Issue 7953 | 66 dart/inline_stack_frame_test: RuntimeError, Pass # Issue 7953 |
| 67 | 67 |
| 68 [ $compiler == dart2js || $compiler == dartanalyzer || $compiler == dart2analyze
r ] | 68 [ $compiler == dart2js || $compiler == dartanalyzer || $compiler == dart2analyze
r ] |
| 69 # Data uri's not supported by dart2js or the analyzer. | 69 # Data uri's not supported by dart2js or the analyzer. |
| 70 dart/data_uri*test: Skip | 70 dart/data_uri*test: Skip |
| 71 | 71 |
| 72 [ $runtime == vm ] | 72 [ $runtime == vm ] |
| 73 dart/data_uri_failures_test/wrongmime: RuntimeError, OK # VM is more restrictive
than the browser | 73 dart/data_uri_failures_test/wrongmime: RuntimeError, OK # VM is more restrictive
than the browser |
| 74 dart/data_uri_failures_test/nomime: RuntimeError, OK | 74 dart/data_uri_failures_test/nomime: RuntimeError, OK |
| 75 dart/data_uri_failures_test/nocharset: RuntimeError, OK | 75 dart/data_uri_failures_test/nocharset: RuntimeError, OK |
| 76 dart/data_uri_failures_test/base64: RuntimeError, OK | 76 dart/data_uri_failures_test/base64: RuntimeError, OK |
| 77 | 77 |
| 78 [ $arch == mips ] | 78 [ $arch == mips ] |
| 79 cc/StaticNonNullSumCallCodegen: Crash, Pass # Issue 17440 | 79 cc/StaticNonNullSumCallCodegen: Crash, Pass # Issue 17440 |
| 80 cc/ArrayLengthMaxElements: Crash # Issue 23275 | 80 cc/ArrayLengthMaxElements: Crash # Issue 23275 |
| 81 | 81 |
| 82 [ $arch == mips && $mode == debug ] | 82 [ $arch == mips && $mode == debug ] |
| 83 cc/FindCodeObject: Skip # Takes more than 8 minutes. Issue 17440 | 83 cc/FindCodeObject: Skip # Takes more than 8 minutes. Issue 17440 |
| 84 | 84 |
| 85 [ $compiler == dartanalyzer || $compiler == dart2analyzer ] | 85 [ $compiler == dartanalyzer || $compiler == dart2analyzer ] |
| 86 dart/optimized_stacktrace_test: StaticWarning | 86 dart/optimized_stacktrace_test: StaticWarning |
| 87 | 87 |
| 88 [ $runtime != vm ] | 88 [ $runtime != vm ] |
| 89 dart/snapshot_version_test: SkipByDesign # Spawns processes | 89 dart/snapshot_version_test: SkipByDesign # Spawns processes |
| 90 | 90 |
| 91 [ $runtime == vm && $mode == debug && $builder_tag == asan ] | 91 [ $runtime == vm && $mode == debug && $builder_tag == asan ] |
| 92 cc/Dart2JSCompileAll: Skip # Timeout. | 92 cc/Dart2JSCompileAll: Skip # Timeout. |
| 93 | |
| 94 [ $compiler == dart2js && $cps_ir ] | |
| 95 dart/error_stacktrace_test: RuntimeError # Please triage this failure. | |
| OLD | NEW |