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, Timeout | 6 cc/ArrayNew_Overflow_Crash: Crash, Timeout |
7 cc/AllocGeneric_Overflow: Crash, Timeout | 7 cc/AllocGeneric_Overflow: Crash, Timeout |
8 cc/CodeImmutability: Crash | 8 cc/CodeImmutability: Crash |
9 | 9 |
10 cc/SNPrint_BadArgs: Skip | 10 cc/SNPrint_BadArgs: Skip |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 dart/optimized_stacktrace_test: RuntimeError | 50 dart/optimized_stacktrace_test: RuntimeError |
51 | 51 |
52 # Methods can be missing in dart2js stack traces due to inlining. Also when | 52 # Methods can be missing in dart2js stack traces due to inlining. Also when |
53 # minifying they can be renamed, which is issue 7953. | 53 # minifying they can be renamed, which is issue 7953. |
54 dart/inline_stack_frame_test: RuntimeError, Pass # Issue 7953 | 54 dart/inline_stack_frame_test: RuntimeError, Pass # Issue 7953 |
55 | 55 |
56 [ $compiler == dart2js || $compiler == dart2analyzer ] | 56 [ $compiler == dart2js || $compiler == dart2analyzer ] |
57 # Data uri's not supported by dart2js or the analyzer. | 57 # Data uri's not supported by dart2js or the analyzer. |
58 dart/data_uri*test: Skip | 58 dart/data_uri*test: Skip |
59 | 59 |
60 [ $runtime == vm ] | 60 [ ($runtime == vm || $runtime == dart_precompiled) ] |
61 dart/data_uri_import_test/wrongmime: RuntimeError, OK # VM is more restrictive t
han the browser | 61 dart/data_uri_import_test/wrongmime: RuntimeError, OK # VM is more restrictive t
han the browser |
62 dart/data_uri_import_test/nomime: RuntimeError, OK | 62 dart/data_uri_import_test/nomime: RuntimeError, OK |
63 dart/data_uri_import_test/nocharset: RuntimeError, OK | 63 dart/data_uri_import_test/nocharset: RuntimeError, OK |
64 | 64 |
65 [ $arch == mips ] | 65 [ $arch == mips ] |
66 cc/StaticNonNullSumCallCodegen: Crash, Pass # Issue 17440 | 66 cc/StaticNonNullSumCallCodegen: Crash, Pass # Issue 17440 |
67 cc/ArrayLengthMaxElements: Crash # Issue 23275 | 67 cc/ArrayLengthMaxElements: Crash # Issue 23275 |
68 cc/Int8ListLengthMaxElements: Skip # Issue 23536, uses 1 GB memory. | 68 cc/Int8ListLengthMaxElements: Skip # Issue 23536, uses 1 GB memory. |
69 | 69 |
70 [ $arch == mips && $mode == debug ] | 70 [ $arch == mips && $mode == debug ] |
71 cc/FindCodeObject: Skip # Takes more than 8 minutes. Issue 17440 | 71 cc/FindCodeObject: Skip # Takes more than 8 minutes. Issue 17440 |
72 | 72 |
73 [ $compiler == dart2analyzer ] | 73 [ $compiler == dart2analyzer ] |
74 dart/optimized_stacktrace_test: StaticWarning | 74 dart/optimized_stacktrace_test: StaticWarning |
75 | 75 |
76 [ $runtime != vm ] | 76 [ $runtime != vm ] |
77 dart/snapshot_version_test: SkipByDesign # Spawns processes | 77 dart/snapshot_version_test: SkipByDesign # Spawns processes |
78 dart/spawn_infinite_loop_test: Skip # VM shutdown test | 78 dart/spawn_infinite_loop_test: Skip # VM shutdown test |
79 dart/spawn_shutdown_test: Skip # VM Shutdown test | 79 dart/spawn_shutdown_test: Skip # VM Shutdown test |
80 | 80 |
81 [ $runtime == vm && $mode == debug && $builder_tag == asan ] | 81 [ ($runtime == vm || $runtime == dart_precompiled) && $mode == debug && $builder
_tag == asan ] |
82 cc/Dart2JSCompileAll: Skip # Timeout. | 82 cc/Dart2JSCompileAll: Skip # Timeout. |
83 | 83 |
84 [ $noopt ] | 84 [ $noopt ] |
| 85 dart/byte_array_test: Crash # Incompatible flag --disable_alloc_stubs_after_gc |
| 86 |
| 87 [ $noopt || $compiler == precompiler ] |
85 dart/redirection_type_shuffling_test: CompileTimeError # Imports dart:mirrors | 88 dart/redirection_type_shuffling_test: CompileTimeError # Imports dart:mirrors |
86 dart/byte_array_test: Crash # Incompatible flag --disable_alloc_stubs_after_gc | |
87 dart/inline_stack_frame_test: Fail # Issue 24783 - inlined frames missing | 89 dart/inline_stack_frame_test: Fail # Issue 24783 - inlined frames missing |
| 90 |
| 91 [ $runtime == dart_precompiled ] |
| 92 dart/optimized_stacktrace_test: Fail |
| 93 dart/data_uri_spawn_test: RuntimeError # Isolate.spawnUri |
OLD | NEW |