Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(396)

Side by Side Diff: runtime/tests/vm/vm.status

Issue 2858623002: Remove MIPS support (Closed)
Patch Set: Rebase Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 # Issue 28198 5 # Issue 28198
6 cc/IsolateReload_PendingUnqualifiedCall_InstanceToStatic: Fail, Crash, Timeout 6 cc/IsolateReload_PendingUnqualifiedCall_InstanceToStatic: Fail, Crash, Timeout
7 cc/IsolateReload_PendingUnqualifiedCall_StaticToInstance: Fail, Crash, Timeout 7 cc/IsolateReload_PendingUnqualifiedCall_StaticToInstance: Fail, Crash, Timeout
8 cc/IsolateReload_PendingConstructorCall_AbstractToConcrete: Fail, Crash, Timeout 8 cc/IsolateReload_PendingConstructorCall_AbstractToConcrete: Fail, Crash, Timeout
9 cc/IsolateReload_PendingConstructorCall_ConcreteToAbstract: Fail, Crash, Timeout 9 cc/IsolateReload_PendingConstructorCall_ConcreteToAbstract: Fail, Crash, Timeout
10 cc/IsolateReload_PendingStaticCall_DefinedToNSM: Fail, Crash, Timeout 10 cc/IsolateReload_PendingStaticCall_DefinedToNSM: Fail, Crash, Timeout
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 cc/Profiler_ToggleRecordAllocation: Crash 83 cc/Profiler_ToggleRecordAllocation: Crash
84 cc/Profiler_TrivialRecordAllocation: Crash 84 cc/Profiler_TrivialRecordAllocation: Crash
85 cc/Profiler_TypedArrayAllocation: Crash 85 cc/Profiler_TypedArrayAllocation: Crash
86 cc/Profiler_GetSourceReport: Crash 86 cc/Profiler_GetSourceReport: Crash
87 cc/Service_Profile: Fail 87 cc/Service_Profile: Fail
88 88
89 # Profiler is completely disabled in SIMDBC builds. 89 # Profiler is completely disabled in SIMDBC builds.
90 # On the simluator stack traces produced by the Profiler do not match 90 # On the simluator stack traces produced by the Profiler do not match
91 # up with the real Dart stack trace and hence we don't get correct 91 # up with the real Dart stack trace and hence we don't get correct
92 # symbol names. 92 # symbol names.
93 [ $arch == simarm || $arch == simarmv6 || $arch == simarmv5te || $arch == simarm 64 || $arch == simmips || $arch == simdbc || $arch == simdbc64 ] 93 [ $arch == simarm || $arch == simarmv6 || $arch == simarmv5te || $arch == simarm 64 || $arch == simdbc || $arch == simdbc64 ]
94 cc/Service_Profile: Skip 94 cc/Service_Profile: Skip
95 cc/Profiler_AllocationSampleTest: Skip 95 cc/Profiler_AllocationSampleTest: Skip
96 cc/Profiler_ArrayAllocation: Skip 96 cc/Profiler_ArrayAllocation: Skip
97 cc/Profiler_BasicSourcePosition: Skip 97 cc/Profiler_BasicSourcePosition: Skip
98 cc/Profiler_BasicSourcePositionOptimized: Skip 98 cc/Profiler_BasicSourcePositionOptimized: Skip
99 cc/Profiler_BinaryOperatorSourcePosition: Skip 99 cc/Profiler_BinaryOperatorSourcePosition: Skip
100 cc/Profiler_BinaryOperatorSourcePositionOptimized: Skip 100 cc/Profiler_BinaryOperatorSourcePositionOptimized: Skip
101 cc/Profiler_ChainedSamples: Skip 101 cc/Profiler_ChainedSamples: Skip
102 cc/Profiler_ClosureAllocation: Skip 102 cc/Profiler_ClosureAllocation: Skip
103 cc/Profiler_CodeTicks: Skip 103 cc/Profiler_CodeTicks: Skip
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
153 dart/optimized_stacktrace_line_and_column_test: RuntimeError 153 dart/optimized_stacktrace_line_and_column_test: RuntimeError
154 154
155 # Methods can be missing in dart2js stack traces due to inlining. Also when 155 # Methods can be missing in dart2js stack traces due to inlining. Also when
156 # minifying they can be renamed, which is issue 7953. 156 # minifying they can be renamed, which is issue 7953.
157 dart/inline_stack_frame_test: RuntimeError, Pass # Issue 7953 157 dart/inline_stack_frame_test: RuntimeError, Pass # Issue 7953
158 158
159 [ $compiler == dart2js || $compiler == dart2analyzer ] 159 [ $compiler == dart2js || $compiler == dart2analyzer ]
160 # Data uri's not supported by dart2js or the analyzer. 160 # Data uri's not supported by dart2js or the analyzer.
161 dart/data_uri*test: Skip 161 dart/data_uri*test: Skip
162 162
163 [ $arch == mips ]
164 cc/Int8ListLengthMaxElements: Skip # Issue 23536, uses 1 GB memory.
165
166 [ $arch == mips && $mode == debug ]
167 cc/FindCodeObject: SkipSlow # Takes more than 8 minutes. Issue 17440
168
169 [ $compiler == dart2analyzer ] 163 [ $compiler == dart2analyzer ]
170 dart/optimized_stacktrace_line_test: StaticWarning 164 dart/optimized_stacktrace_line_test: StaticWarning
171 dart/optimized_stacktrace_line_and_column_test: StaticWarning 165 dart/optimized_stacktrace_line_and_column_test: StaticWarning
172 166
173 [ $compiler == dart2analyzer && $builder_tag == strong ] 167 [ $compiler == dart2analyzer && $builder_tag == strong ]
174 *: Skip # Issue 28649 168 *: Skip # Issue 28649
175 169
176 [ $compiler == app_jit ] 170 [ $compiler == app_jit ]
177 dart/snapshot_version_test: Fail,OK # Expects to find script snapshot relative t o Dart source. 171 dart/snapshot_version_test: Fail,OK # Expects to find script snapshot relative t o Dart source.
178 172
(...skipping 414 matching lines...) Expand 10 before | Expand all | Expand 10 after
593 cc/Parser_AllocateVariables_TwoChains : Crash 587 cc/Parser_AllocateVariables_TwoChains : Crash
594 cc/Profiler_BasicSourcePosition : Crash 588 cc/Profiler_BasicSourcePosition : Crash
595 cc/Profiler_BasicSourcePositionOptimized : Crash 589 cc/Profiler_BasicSourcePositionOptimized : Crash
596 cc/Profiler_BinaryOperatorSourcePosition : Crash 590 cc/Profiler_BinaryOperatorSourcePosition : Crash
597 cc/Profiler_BinaryOperatorSourcePositionOptimized : Crash 591 cc/Profiler_BinaryOperatorSourcePositionOptimized : Crash
598 cc/Profiler_SourcePosition : Crash 592 cc/Profiler_SourcePosition : Crash
599 cc/Profiler_SourcePositionOptimized : Crash 593 cc/Profiler_SourcePositionOptimized : Crash
600 594
601 [ ($compiler == dartk) && ($runtime == vm) && ($system == macos) && ($mode == de bug)] 595 [ ($compiler == dartk) && ($runtime == vm) && ($system == macos) && ($mode == de bug)]
602 cc/FindCodeObject : Timeout 596 cc/FindCodeObject : Timeout
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698