blob: a669a83a0df0484b8f717a3fa8eccdbbea83971c [file] [log] [blame]
Ben Murdoch086aeea2011-05-13 15:57:08 +01001# Copyright 2011 the V8 project authors. All rights reserved.
Steve Blocka7e24c12009-10-30 11:49:00 +00002# Redistribution and use in source and binary forms, with or without
3# modification, are permitted provided that the following conditions are
4# met:
5#
6# * Redistributions of source code must retain the above copyright
7# notice, this list of conditions and the following disclaimer.
8# * Redistributions in binary form must reproduce the above
9# copyright notice, this list of conditions and the following
10# disclaimer in the documentation and/or other materials provided
11# with the distribution.
12# * Neither the name of Google Inc. nor the names of its
13# contributors may be used to endorse or promote products derived
14# from this software without specific prior written permission.
15#
16# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
Ben Murdochb8a8cc12014-11-26 15:28:44 +000028[
29[ALWAYS, {
30 # All tests prefixed with 'Bug' are expected to fail.
31 'test-api/Bug*': [FAIL],
Emily Bernierd0a1eb72015-03-24 16:35:39 -040032 'test-serialize/Bug*': [FAIL],
Steve Blocka7e24c12009-10-30 11:49:00 +000033
Ben Murdochb8a8cc12014-11-26 15:28:44 +000034 ##############################################################################
35
36 # BUG(382): Weird test. Can't guarantee that it never times out.
37 'test-api/ApplyInterruption': [PASS, TIMEOUT],
38
39 # These tests always fail. They are here to test test.py. If
40 # they don't fail then test.py has failed.
41 'test-serialize/TestThatAlwaysFails': [FAIL],
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000042 'test-api/SealHandleScope': [FAIL],
Ben Murdochb8a8cc12014-11-26 15:28:44 +000043
44 # This test always fails. It tests that LiveEdit causes abort when turned off.
45 'test-debug/LiveEditDisabled': [FAIL],
46
47 # This test always fails. It tests that DisallowJavascriptExecutionScope
48 # works as intended.
49 'test-api/DisallowJavascriptExecutionScope': [FAIL],
50
51 # TODO(gc): Temporarily disabled in the GC branch.
52 'test-log/EquivalenceOfLoggingAndTraversal': [PASS, FAIL],
53
54 # We do not yet shrink weak maps after they have been emptied by the GC
55 'test-weakmaps/Shrinking': [FAIL],
56 'test-weaksets/WeakSet_Shrinking': [FAIL],
57
58 # Boot up memory use is bloated in debug mode.
59 'test-mark-compact/BootUpMemoryUse': [PASS, PASS, ['mode == debug', FAIL]],
60
61 # This tests only that the preparser and parser agree, so there is no point in
62 # running several variants. Note that this still takes ages, because there
63 # are actually 13 * 38 * 5 * 128 = 316160 individual tests hidden here.
64 'test-parsing/ParserSync': [PASS, NO_VARIANTS],
65
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000066 # This tests only the type system, no point in running several variants.
Ben Murdochb8a8cc12014-11-26 15:28:44 +000067 'test-hydrogen-types/*': [PASS, NO_VARIANTS],
68 'test-types/*': [PASS, NO_VARIANTS],
69
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000070 # This tests API threading, no point in running several variants.
71 'test-api/Threading*': [PASS, NO_VARIANTS],
72
Ben Murdoch097c5b22016-05-18 11:27:45 +010073 # BUG(2999). The cpu profiler tests are notoriously flaky.
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000074 'test-cpu-profiler/CpuProfileDeepStack': [SKIP],
Ben Murdochda12d292016-06-02 14:46:10 +010075 'test-cpu-profiler/CollectCpuProfile': [SKIP],
Ben Murdoch097c5b22016-05-18 11:27:45 +010076 'test-cpu-profiler/HotDeoptNoFrameEntry': [SKIP],
Ben Murdochda12d292016-06-02 14:46:10 +010077 'test-cpu-profiler/SampleWhenFrameIsNotSetup': [SKIP],
Ben Murdochb8a8cc12014-11-26 15:28:44 +000078
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000079 # BUG(v8:4358). Hangs flakily.
80 'test-debug/ProcessDebugMessagesThreaded': [SKIP],
81
82 # BUG(2340). Preprocessing stack traces is disabled at the moment.
83 'test-heap/PreprocessStackTrace': [FAIL],
84
85 # BUG(4333). Function name inferrer does not work for ES6 clases.
86 'test-func-name-inference/UpperCaseClass': [FAIL],
87 'test-func-name-inference/LowerCaseClass': [FAIL],
88
Ben Murdochb8a8cc12014-11-26 15:28:44 +000089 ##############################################################################
90 # TurboFan compiler failures.
91
Ben Murdochb8a8cc12014-11-26 15:28:44 +000092 # Some tests are just too slow to run for now.
Ben Murdochb8a8cc12014-11-26 15:28:44 +000093 'test-heap/IncrementalMarkingStepMakesBigProgressWithLargeObjects': [PASS, NO_VARIANTS],
94 'test-heap-profiler/ManyLocalsInSharedContext': [PASS, NO_VARIANTS],
Ben Murdochda12d292016-06-02 14:46:10 +010095 'test-serialize/CodeSerializerLargeCodeObject': [PASS, NO_VARIANTS],
Ben Murdochb8a8cc12014-11-26 15:28:44 +000096 'test-debug/ThreadedDebugging': [PASS, NO_VARIANTS],
Emily Bernierd0a1eb72015-03-24 16:35:39 -040097 # BUG(3742).
98 'test-mark-compact/MarkCompactCollector': [PASS, ['arch==arm', NO_VARIANTS]],
Ben Murdochb8a8cc12014-11-26 15:28:44 +000099
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000100 # TODO(mstarzinger): The rewriter is not being called when top-level code is
101 # optimized and hence scripts don't "return" the correct value. Fix this.
102 'test-compiler/CompileFunctionInContext*': [PASS, NO_VARIANTS],
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400103
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000104 # TODO(bmeurer): TurboFan embeds strong references to all kinds of objects
105 # via deoptimization data (Crankshaft also does this, but lack proper test
106 # coverage).
107 'test-heap/ObjectsInOptimizedCodeAreWeak': [PASS, NO_VARIANTS],
108
109 # TurboFan doesn't support allocation sites currently.
110 'test-heap/EnsureAllocationSiteDependentCodesProcessed': [PASS, NO_VARIANTS],
111 'test-heap/OptimizedPretenuringAllocationFolding': [PASS, NO_VARIANTS],
112 'test-heap/OptimizedPretenuringdoubleArrayLiterals': [PASS, NO_VARIANTS],
113 'test-heap/OptimizedPretenuringDoubleArrayProperties': [PASS, NO_VARIANTS],
114 'test-heap/OptimizedPretenuringMixedInObjectProperties': [PASS, NO_VARIANTS],
115 'test-heap/OptimizedPretenuringNestedDoubleLiterals': [PASS, NO_VARIANTS],
116 'test-heap/OptimizedPretenuringNestedMixedArrayLiterals': [PASS, NO_VARIANTS],
117 'test-heap/OptimizedPretenuringNestedObjectLiterals': [PASS, NO_VARIANTS],
118 'test-heap/OptimizedPretenuringObjectArrayLiterals': [PASS, NO_VARIANTS],
119
120 # TurboFan cpu profiler result is different.
121 'test-cpu-profiler/CollectDeoptEvents': [PASS, NO_VARIANTS],
122 'test-cpu-profiler/DeoptAtFirstLevelInlinedSource': [PASS, NO_VARIANTS],
123 'test-cpu-profiler/DeoptAtSecondLevelInlinedSource': [PASS, NO_VARIANTS],
124 'test-cpu-profiler/DeoptUntrackedFunction': [PASS, NO_VARIANTS],
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000125
126 ############################################################################
127 # Slow tests.
128 'test-api/Threading1': [PASS, ['mode == debug', SLOW]],
129 'test-api/Threading2': [PASS, ['mode == debug', SLOW]],
130 'test-api/Threading3': [PASS, ['mode == debug', SLOW]],
131 'test-api/Threading4': [PASS, ['mode == debug', SLOW]],
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000132 'test-debug/CallFunctionInDebugger': [PASS, ['mode == debug', SLOW]],
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000133 'test-strings/StringOOM*': [PASS, ['mode == debug', SKIP]],
Ben Murdochda12d292016-06-02 14:46:10 +0100134 'test-serialize/CustomSnapshotDataBlobImmortalImmovableRoots': [PASS, ['mode == debug', SKIP]],
Ben Murdochc5610432016-08-08 18:44:38 +0100135
136 ############################################################################
137 # Ignition
138
139 # TODO(rmcilroy,4680): Related to lack of code flushing. Check failed: !function->shared()->is_compiled() || function->IsOptimized().
140 'test-heap/TestCodeFlushingPreAged': [PASS, NO_IGNITION],
141 'test-heap/TestCodeFlushingIncrementalScavenge': [PASS, NO_IGNITION],
142 'test-heap/TestCodeFlushing': [PASS, NO_IGNITION],
143 'test-heap/TestCodeFlushingIncremental': [PASS, NO_IGNITION],
144 'test-heap/TestCodeFlushingIncrementalAbort': [PASS, ['mode == debug or dcheck_always_on == True', NO_IGNITION]],
145
146 # TODO(rmcilroy,4680): Fails to find the correct function name for the
147 # anonymous function. Fails without ignition but with --no-lazy also, so seems
148 # to be an issue when eagerly parsing.
149 'test-func-name-inference/ReturnAnonymousFunction': [PASS, NO_IGNITION],
150
151 # TODO(mythria,4780): Related to type feedback support for calls.
152 'test-feedback-vector/VectorCallICStates': [PASS, NO_IGNITION],
Ben Murdoch61f157c2016-09-16 13:49:30 +0100153 'test-feedback-vector/VectorCallCounts': [PASS, NO_IGNITION],
Ben Murdochc5610432016-08-08 18:44:38 +0100154 'test-compiler/FeedbackVectorPreservedAcrossRecompiles': [PASS, NO_IGNITION],
155 'test-heap/WeakFunctionInConstructor': [PASS, NO_IGNITION],
156 'test-heap/IncrementalMarkingClearsMonomorphicConstructor': [PASS, NO_IGNITION],
157 'test-heap/IncrementalMarkingPreservesMonomorphicConstructor': [PASS, NO_IGNITION],
158 'test-heap/IncrementalMarkingPreservesMonomorphicCallIC': [PASS, NO_IGNITION],
159 'test-heap/CellsInOptimizedCodeAreWeak': [PASS, NO_IGNITION],
160
161 # TODO(mythria,4680): Lack of code-ageing in interpreter.
162 'test-heap/Regress169209': [PASS, NO_IGNITION],
163
164 # TODO(mythria,4680): Lack of code-ageing and/or lack of compilation cache
165 # in interpreter.
166 'test-heap/CompilationCacheCachingBehavior': [PASS, NO_IGNITION],
167
168 # TODO(mstarzinger,4680): Fails due to the turbo-asm pipeline only being taken
169 # in compiler.cc GetLazyCode for uncompiled code, and no similar path for eager
170 # code.
171 'test-api/TurboAsmDisablesNeuter': [PASS, NO_IGNITION],
172
173 # TODO(mvstanton,4900): CHECK(!g_function->is_compiled());
174 'test-heap/TestUseOfIncrementalBarrierOnCompileLazy': [PASS, NO_IGNITION],
175
176 # BUG(rmcilroy,4680): Function is optimized without type feedback and so immediately deopts again, causing check failure in the test.
177 'test-heap/ResetSharedFunctionInfoCountersDuringIncrementalMarking': [PASS, NO_IGNITION],
178 'test-heap/ResetSharedFunctionInfoCountersDuringMarkSweep': [PASS, NO_IGNITION],
179
Ben Murdoch61f157c2016-09-16 13:49:30 +0100180 # BUG(4751). Flaky with ignition.
181 'test-cpu-profiler/JsNativeJsSample': [PASS, NO_IGNITION],
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000182}], # ALWAYS
Steve Block6ded16b2010-05-10 14:33:55 +0100183
Ben Murdochb0fe1622011-05-05 13:52:32 +0100184##############################################################################
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000185['arch == arm64', {
Steve Blocka7e24c12009-10-30 11:49:00 +0000186
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000187 'test-cpu-profiler/CollectDeoptEvents': [PASS, FAIL],
188
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000189 'test-api/Bug618': [PASS],
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100190
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000191 # BUG(v8:3385).
Ben Murdochda12d292016-06-02 14:46:10 +0100192 'test-serialize/StartupSerializerOnceRunScript': [PASS, FAIL],
193 'test-serialize/StartupSerializerTwiceRunScript': [PASS, FAIL],
Steve Block3ce2e202009-11-05 08:53:23 +0000194
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000195 # BUG(v8:3154).
196 'test-heap/ReleaseOverReservedPages': [PASS, FAIL],
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100197
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000198 # BUG(v8:3155).
199 'test-strings/OneByteArrayJoin': [PASS, ['mode == debug', FAIL]],
200
201 # BUG(v8:3247).
202 'test-mark-compact/NoPromotion': [SKIP],
203
204 # BUG(v8:3446).
205 'test-mark-compact/Promotion': [PASS, FAIL],
206
207 # BUG(v8:3434).
208 ' test-api/LoadICFastApi_DirectCall_GCMoveStubWithProfiler': [SKIP],
Ben Murdochda12d292016-06-02 14:46:10 +0100209
210 # BUG(v8:4795).
211 'test-run-wasm-js/Run_JSSelectAlign_0': [SKIP],
212 'test-run-wasm-js/Run_JSSelectAlign_2': [SKIP],
213 'test-run-wasm-js/Run_JSSelectAlign_4': [SKIP],
214 'test-run-wasm-js/Run_JSSelect_0': [SKIP],
215 'test-run-wasm-js/Run_JSSelect_1': [SKIP],
216 'test-run-wasm-js/Run_JSSelect_2': [SKIP],
217 'test-run-wasm-js/Run_JSSelect_3': [SKIP],
218 'test-run-wasm-js/Run_JSSelect_4': [SKIP],
219 'test-run-wasm-js/Run_JSSelect_5': [SKIP],
220 'test-run-wasm-js/Run_JSSelect_6': [SKIP],
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000221}], # 'arch == arm64'
222
223['arch == arm64 and simulator_run == True', {
224
225 # Pass but take too long with the simulator.
226 'test-api/ExternalArrays': [PASS, TIMEOUT],
227 'test-api/Threading1': [SKIP],
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000228 'test-api/Threading2': [SKIP],
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000229}], # 'arch == arm64 and simulator_run == True'
230
231['arch == arm64 and mode == debug and simulator_run == True', {
232
233 # Pass but take too long with the simulator in debug mode.
234 'test-api/ExternalDoubleArray': [SKIP],
235 'test-api/ExternalFloat32Array': [SKIP],
236 'test-api/ExternalFloat64Array': [SKIP],
237 'test-api/ExternalFloatArray': [SKIP],
238 'test-api/Float32Array': [SKIP],
239 'test-api/Float64Array': [SKIP],
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000240}], # 'arch == arm64 and mode == debug and simulator_run == True'
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000241
Ben Murdochb0fe1622011-05-05 13:52:32 +0100242##############################################################################
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000243['asan == True', {
244 # Skip tests not suitable for ASAN.
245 'test-assembler-x64/AssemblerX64XchglOperations': [SKIP],
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000246}], # 'asan == True'
Ben Murdoch8b112d22011-06-08 16:22:53 +0100247
Ben Murdochb0fe1622011-05-05 13:52:32 +0100248##############################################################################
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000249['msan == True', {
250 # ICU upstream issues.
251 'test-strings/CountBreakIterator': [SKIP],
252
253 # Slow tests.
254 'test-api/Threading1': [PASS, SLOW],
255 'test-api/Threading2': [PASS, SLOW],
256 'test-api/Threading3': [PASS, SLOW],
257 'test-api/Threading4': [PASS, SLOW],
258}], # 'msan == True'
259
260##############################################################################
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000261['no_snap == True', {
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000262 # Slow tests.
263 'test-api/ExternalWrap': [PASS, SLOW],
264 'test-api/FastReturnValues*': [PASS, SLOW],
265 'test-decls/CrossScriptReferences_Simple2': [PASS, SLOW],
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000266}], # 'no_snap == True'
Ben Murdochb0fe1622011-05-05 13:52:32 +0100267
268##############################################################################
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000269# TODO(machenbach): Fix application of '*'. Nosnap windows needs a separate
270# section to not overwrite the expectations for TestThatAlwaysFails.
271['no_snap == True and system == windows', {
272 # Windows doesn't support nosnap mode.
273 'test-serialize/*': [SKIP],
274}], # 'no_snap == True and system == windows'
Ben Murdochc7cc0282012-03-05 14:35:55 +0000275
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000276##############################################################################
277['system == windows', {
278
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000279 # BUG(3331). Fails on windows.
280 'test-heap/NoWeakHashTableLeakWithIncrementalMarking': [SKIP],
281
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000282 # BUG(v8:4573).
283 'test-api/MultipleIsolatesOnIndividualThreads': [PASS, NO_VARIANTS],
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000284
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000285 # BUG(v8:4642).
286 'test-lockers/LockAndUnlockDifferentIsolates': [PASS, NO_VARIANTS],
Ben Murdochda12d292016-06-02 14:46:10 +0100287
288 # BUG(v8:2999,v8:4751).
289 'test-cpu-profiler/CollectDeoptEvents': [SKIP],
290 'test-cpu-profiler/FunctionCallSample': [SKIP],
291 'test-cpu-profiler/JsNativeJsRuntimeJsSample': [SKIP],
292 'test-cpu-profiler/JsNativeJsRuntimeJsSampleMultiple': [SKIP],
293 'test-cpu-profiler/JsNativeJsSample': [SKIP],
294 'test-cpu-profiler/JsNative1JsNative2JsSample': [SKIP],
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000295}], # 'system == windows'
296
297##############################################################################
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000298['byteorder == big', {
299 # TODO(mips-team): Fix Wasm for big-endian.
Ben Murdoch097c5b22016-05-18 11:27:45 +0100300 'test-run-wasm-module/Run_WasmModule_CallAdd': [SKIP],
Ben Murdoch097c5b22016-05-18 11:27:45 +0100301 'test-run-wasm-module/Run_WasmModule_CallMain_recursive': [SKIP],
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000302 'test-run-wasm-module/Run_WasmModule_ReadLoadedDataSegment': [SKIP],
Ben Murdoch097c5b22016-05-18 11:27:45 +0100303 'test-run-wasm-module/Run_WasmModule_Return114': [SKIP],
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000304 'test-run-wasm-module/Run_WasmModule_CheckMemoryIsZero': [SKIP],
305 'test-run-wasm-module/Run_WasmModule_Global': [SKIP],
Ben Murdochc5610432016-08-08 18:44:38 +0100306 'test-run-wasm/RunWasmCompiled_Int32LoadInt16_signext': [SKIP],
Ben Murdoch61f157c2016-09-16 13:49:30 +0100307 'test-run-wasm/RunWasmInterpreted_Int32LoadInt16_signext': [SKIP],
Ben Murdochc5610432016-08-08 18:44:38 +0100308 'test-run-wasm/RunWasmCompiled_Int32LoadInt16_zeroext': [SKIP],
Ben Murdoch61f157c2016-09-16 13:49:30 +0100309 'test-run-wasm/RunWasmInterpreted_Int32LoadInt16_zeroext': [SKIP],
Ben Murdochc5610432016-08-08 18:44:38 +0100310 'test-run-wasm/RunWasmCompiled_MixedGlobals': [SKIP],
Ben Murdoch61f157c2016-09-16 13:49:30 +0100311 'test-run-wasm/RunWasmInterpreted_MixedGlobals': [SKIP],
Ben Murdochc5610432016-08-08 18:44:38 +0100312 'test-run-wasm-64/RunWasmCompiled_I64*': [SKIP],
313 'test-run-wasm-64/RunWasmCompiled_LoadStoreI64_sx': [SKIP],
Ben Murdoch61f157c2016-09-16 13:49:30 +0100314 'test-run-wasm-64/RunWasmInterpreted_LoadStoreI64_sx': [SKIP],
Ben Murdochda12d292016-06-02 14:46:10 +0100315 'test-run-wasm-64/Run_TestI64WasmRunner': [SKIP],
Ben Murdochc5610432016-08-08 18:44:38 +0100316 'test-run-wasm-64/RunWasmCompiled_Call_Int64Sub': [SKIP],
317 'test-run-wasm-64/RunWasmCompiled_MemI64_Sum': [SKIP],
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000318}], # 'byteorder == big'
319
320##############################################################################
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000321['arch == arm', {
322
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000323 'test-cpu-profiler/CollectDeoptEvents': [PASS, FAIL],
324
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000325 # BUG(355): Test crashes on ARM.
326 'test-log/ProfLazyMode': [SKIP],
327
328 # BUG(1075): Unresolved crashes.
Ben Murdochda12d292016-06-02 14:46:10 +0100329 'test-serialize/StartupSerializerOnce': [SKIP],
330 'test-serialize/StartupSerializerTwice': [SKIP],
331 'test-serialize/StartupSerializerOnceRunScript': [SKIP],
332 'test-serialize/StartupSerializerTwiceRunScript': [SKIP],
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000333
334 ############################################################################
335 # Slow tests.
336 'test-api/Threading1': [PASS, SLOW],
337 'test-api/Threading2': [PASS, SLOW],
338 'test-api/Threading3': [PASS, SLOW],
339 'test-api/Threading4': [PASS, SLOW],
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000340}], # 'arch == arm'
341
342##############################################################################
343['arch == mipsel or arch == mips', {
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000344 'test-cpu-profiler/CollectDeoptEvents': [PASS, FAIL],
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000345
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000346 # TODO(mips-team): Improve code-size on large RegExp's.
347 'test-heap/TestSizeOfRegExpCode': [SKIP],
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000348
349 # BUG(1075): Unresolved crashes on MIPS also.
Ben Murdochda12d292016-06-02 14:46:10 +0100350 'test-serialize/StartupSerializerOnce': [SKIP],
351 'test-serialize/StartupSerializerTwice': [SKIP],
352 'test-serialize/StartupSerializerOnceRunScript': [SKIP],
353 'test-serialize/StartupSerializerTwiceRunScript': [SKIP],
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000354}], # 'arch == mipsel or arch == mips'
355
356##############################################################################
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400357['arch == mips', {
358 # Too slow with TF.
359 'test-api/ExternalArrays': [PASS, NO_VARIANTS],
360
361 # TODO(mips-team): Currently fails on mips board.
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400362 'test-parsing/TooManyArguments': [SKIP],
363 'test-api/Threading3': [SKIP],
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400364}], # 'arch == mips'
365
366##############################################################################
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000367['arch == mips64el or arch == mips64', {
368 'test-cpu-profiler/CollectDeoptEvents': [PASS, FAIL],
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000369
370 # BUG(v8:3154).
371 'test-heap/ReleaseOverReservedPages': [PASS, FAIL],
372
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000373 # TODO(mips-team): Improve code-size on large RegExp's.
374 'test-heap/TestSizeOfRegExpCode': [SKIP],
375
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000376 # BUG(1075): Unresolved crashes on MIPS also.
Ben Murdochda12d292016-06-02 14:46:10 +0100377 'test-serialize/StartupSerializerOnce': [SKIP],
378 'test-serialize/StartupSerializerTwice': [SKIP],
379 'test-serialize/StartupSerializerOnceRunScript': [SKIP],
380 'test-serialize/StartupSerializerTwiceRunScript': [SKIP],
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000381}], # 'arch == mips64el or arch == mips64'
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000382
383##############################################################################
384['arch == x87', {
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000385 'test-run-machops/RunFloat64InsertLowWord32': [SKIP],
386 'test-run-native-calls/MixedParams_0': [SKIP],
387 'test-run-native-calls/MixedParams_1': [SKIP],
388 'test-run-native-calls/MixedParams_2': [SKIP],
389 'test-run-native-calls/MixedParams_3': [SKIP],
390 'test-run-machops/RunFloat64MulAndFloat64Add1': [SKIP],
391 'test-run-machops/RunFloat64MulAndFloat64Add2': [SKIP],
392 'test-run-machops/RunFloat64MulAndFloat64Sub1': [SKIP],
393 'test-run-machops/RunFloat64MulAndFloat64Sub2': [SKIP],
Ben Murdoch61f157c2016-09-16 13:49:30 +0100394 'test-run-machops/RunFloat64Sin': [SKIP],
395 'test-run-machops/RunFloat64Cos': [SKIP],
396 'test-run-machops/RunFloat64Expm1': [SKIP],
397 'test-run-machops/RunFloat64Tan': [SKIP],
Ben Murdochda12d292016-06-02 14:46:10 +0100398 'test-cpu-profiler/Inlining': [SKIP],
Ben Murdoch61f157c2016-09-16 13:49:30 +0100399 'test-gap-resolver/FuzzResolver': [SKIP],
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000400}], # 'arch == x87'
401
402##############################################################################
403['arch == android_arm or arch == android_ia32', {
404
405 # Tests crash as there is no /tmp directory in Android.
406 'test-log/LogAccessorCallbacks': [SKIP],
407 'test-log/LogCallbacks': [SKIP],
408 'test-log/ProfLazyMode': [SKIP],
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000409}], # 'arch == android_arm or arch == android_ia32'
410
411##############################################################################
412['arch == nacl_ia32 or arch == nacl_x64', {
413
414 # NaCl builds have problems with threaded tests since Pepper_28.
415 # V8 Issue 2786
416 'test-api/Threading1': [SKIP],
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000417 'test-lockers/ExtensionsRegistration': [SKIP],
418
419 # These tests fail as there is no /tmp directory in Native Client.
420 'test-log/LogAccessorCallbacks': [SKIP],
421 'test-log/LogCallbacks': [SKIP],
422 'test-log/ProfLazyMode': [SKIP],
423
424 # Native Client doesn't support sockets.
425 'test-debug/DebuggerAgent': [SKIP],
426 'test-debug/DebuggerAgentProtocolOverflowHeader': [SKIP],
427 'test-socket/Socket': [SKIP],
428
429 # Profiling doesn't work on Native Client.
430 'test-cpu-profiler/*': [SKIP],
431
432 # Fails since 16322 (new test).
433 'test-code-stubs-arm/ConvertDToI': [SKIP],
434
435 # BUG(2998).
436 'test-macro-assembler-arm/LoadAndStoreWithRepresentation': [SKIP],
437
438 # BUG(3150).
439 'test-api/PreCompileInvalidPreparseDataError': [SKIP],
440
441 'test-types/Convert' : [SKIP],
442 'test-symbols/Create' : [SKIP],
443 'test-parsing/ParserSync' : [SKIP],
444 'test-parsing/ErrorsEvalAndArguments' : [SKIP],
445 'test-parsing/ErrorsFutureStrictReservedWords' : [SKIP],
446 'test-parsing/ErrorsReservedWords' : [SKIP],
447 'test-parsing/ErrorsYieldStrict' : [SKIP],
448 'test-parsing/ErrorsNotAnIdentifierName' : [SKIP],
449 'test-parsing/FunctionDeclaresItselfStrict' : [SKIP],
450 'test-parsing/ErrorsObjectLiteralChecking' : [SKIP],
451 'test-parsing/InvalidLeftHandSide' : [SKIP],
452 'test-heap/GarbageCollection' : [SKIP],
453 'test-heap/GlobalHandles' : [SKIP],
454 'test-heap/WeakGlobalHandlesScavenge' : [SKIP],
455 'test-heap/DeleteWeakGlobalHandle' : [SKIP],
456 'test-heap/GrowAndShrinkNewSpace' : [SKIP],
457 'test-heap/OptimizedAllocationAlwaysInNewSpace' : [SKIP],
458 'test-heap/OptimizedPretenuringAllocationFolding' : [SKIP],
459 'test-heap/OptimizedPretenuringObjectArrayLiterals' : [SKIP],
460 'test-heap/OptimizedPretenuringAllocationFoldingBlocks' : [SKIP],
461 'test-heap/OptimizedPretenuringMixedInObjectProperties' : [SKIP],
462 'test-heap/OptimizedPretenuringDoubleArrayProperties' : [SKIP],
463 'test-heap/OptimizedPretenuringdoubleArrayLiterals' : [SKIP],
464 'test-heap/OptimizedPretenuringNestedMixedArrayLiterals' : [SKIP],
465 'test-heap/OptimizedPretenuringNestedObjectLiterals' : [SKIP],
466 'test-heap/OptimizedPretenuringNestedDoubleLiterals' : [SKIP],
467 'test-heap/Regress169928' : [SKIP],
468 'test-decls/Unknown' : [SKIP],
469 'test-decls/Present' : [SKIP],
470 'test-decls/Absent' : [SKIP],
471 'test-decls/Appearing' : [SKIP],
472 'test-decls/Reappearing' : [SKIP],
473 'test-decls/ExistsInPrototype' : [SKIP],
474 'test-decls/AbsentInPrototype' : [SKIP],
475 'test-decls/ExistsInHiddenPrototype' : [SKIP],
476 'test-debug/ConditionalScriptBreakPoint' : [SKIP],
477 'test-debug/DebugEvaluate' : [SKIP],
478 'test-debug/ConditionalBreakpointWithCodeGenerationDisallowed' : [SKIP],
479 'test-debug/DebugEvaluateWithCodeGenerationDisallowed' : [SKIP],
480 'test-debug/DebugBreak' : [SKIP],
481 'test-debug/ThreadedDebugging' : [SKIP],
482 'test-debug/RecursiveBreakpoints' : [SKIP],
483 'test-dictionary/HashMap' : [SKIP],
484 'test-debug/Backtrace' : [SKIP],
485 'test-debug/DebugBreakLoop' : [SKIP],
486 'test-constantpool/ConstantPool' : [SKIP],
487 'test-compiler/GetScriptLineNumber' : [SKIP],
488 'test-api/ScriptMakingExternalString' : [SKIP],
489 'test-api/ScriptMakingExternalOneByteString' : [SKIP],
490 'test-api/MakingExternalStringConditions' : [SKIP],
491 'test-api/MakingExternalOneByteStringConditions' : [SKIP],
492 'test-api/MakingExternalUnalignedOneByteString' : [SKIP],
493 'test-api/IndexedInterceptorUnboxedDoubleWithIndexedAccessor' : [SKIP],
494 'test-api/IndependentWeakHandle' : [SKIP],
495 'test-api/GCFromWeakCallbacks' : [SKIP],
496 'test-api/IndependentHandleRevival' : [SKIP],
497 'test-api/StringWrite' : [SKIP],
498 'test-api/Threading3' : [SKIP],
499 'test-api/Threading4' : [SKIP],
500 'test-api/Threading2' : [SKIP],
501 'test-api/FixedFloat32Array' : [SKIP],
502 'test-api/FixedFloat64Array' : [SKIP],
503 'test-api/ExternalFloat32Array' : [SKIP],
504 'test-api/ExternalFloat64Array' : [SKIP],
505 'test-api/ExternalArrays' : [SKIP],
506 'test-api/Float32Array' : [SKIP],
507 'test-api/Float64Array' : [SKIP],
508 'test-api/Regress2333' : [SKIP],
509 'test-alloc/StressHandles' : [SKIP],
510 'test-alloc/StressJS' : [SKIP],
511 'test-accessors/HandleScopePop' : [SKIP],
512 'test-accessors/Gc' : [SKIP],
513
514}], # 'arch == nacl_ia32 or arch == nacl_x64'
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000515
516##############################################################################
517['system == aix and arch == ppc64', {
518
519 # BUG 2857
520 'test-log/EquivalenceOfLoggingAndTraversal' : [SKIP],
521
522}], # 'system == aix and arch == ppc64'
523
524##############################################################################
525['system == aix or (arch == ppc64 and byteorder == big)', {
526
527 # TODO(ppc): Fix for platforms with function desciptors.
528 'test-run-machops/RunComputedCodeObject' : [SKIP],
529 'test-run-wasm-module/Run_WasmModule_Return114' : [SKIP],
530 'test-run-wasm-module/Run_WasmModule_CallAdd' : [SKIP],
531 'test-run-wasm-module/Run_WasmModule_CallMain_recursive' : [SKIP],
532
533}], # 'system == aix or (arch == ppc64 and byteorder == big)'
534
535##############################################################################
536['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == True', {
537
538 # Pass but take too long with the simulator.
539 'test-api/Threading1': [PASS, SLOW],
540 'test-api/Threading2': [PASS, SLOW],
541 'test-api/ExternalArrays': [PASS, SLOW],
542
543}], # 'arch == ppc64 and simulator_run == True'
544
Ben Murdochda12d292016-06-02 14:46:10 +0100545##############################################################################
Ben Murdochc5610432016-08-08 18:44:38 +0100546['ignition or ignition_turbofan', {
547 # TODO(rmcilroy,4680): Related to lack of code flushing. Check failed: !function->shared()->is_compiled() || function->IsOptimized().
Ben Murdoch097c5b22016-05-18 11:27:45 +0100548 'test-heap/TestCodeFlushingPreAged': [FAIL],
549 'test-heap/TestCodeFlushingIncrementalScavenge': [FAIL],
550 'test-heap/TestCodeFlushing': [FAIL],
551 'test-heap/TestCodeFlushingIncremental': [FAIL],
552 'test-heap/TestCodeFlushingIncrementalAbort': [PASS, ['mode == debug or dcheck_always_on == True', FAIL]],
553
Ben Murdochda12d292016-06-02 14:46:10 +0100554 # TODO(rmcilroy,4680): Fails to find the correct function name for the
555 # anonymous function. Fails without ignition but with --no-lazy also, so seems
556 # to be an issue when eagerly parsing.
557 'test-func-name-inference/ReturnAnonymousFunction': [FAIL],
Ben Murdoch097c5b22016-05-18 11:27:45 +0100558
Ben Murdochda12d292016-06-02 14:46:10 +0100559 # TODO(mythria,4780): Related to type feedback support for calls.
Ben Murdoch097c5b22016-05-18 11:27:45 +0100560 'test-feedback-vector/VectorCallICStates': [FAIL],
Ben Murdoch61f157c2016-09-16 13:49:30 +0100561 'test-feedback-vector/VectorCallCounts': [FAIL],
Ben Murdoch097c5b22016-05-18 11:27:45 +0100562 'test-compiler/FeedbackVectorPreservedAcrossRecompiles': [FAIL],
Ben Murdoch097c5b22016-05-18 11:27:45 +0100563 'test-heap/WeakFunctionInConstructor': [FAIL],
Ben Murdoch097c5b22016-05-18 11:27:45 +0100564 'test-heap/IncrementalMarkingClearsMonomorphicConstructor': [FAIL],
565 'test-heap/IncrementalMarkingPreservesMonomorphicConstructor': [FAIL],
566 'test-heap/IncrementalMarkingPreservesMonomorphicCallIC': [FAIL],
Ben Murdoch097c5b22016-05-18 11:27:45 +0100567 'test-heap/CellsInOptimizedCodeAreWeak': [FAIL],
Ben Murdochda12d292016-06-02 14:46:10 +0100568
569 # TODO(mythria,4680): Lack of code-ageing in interpreter.
570 'test-heap/Regress169209': [FAIL],
571
572 # TODO(mythria,4680): Lack of code-ageing and/or lack of compilation cache
573 # in interpreter.
574 'test-heap/CompilationCacheCachingBehavior': [FAIL],
575
576 # TODO(mstarzinger,4680): Fails due to the turbo-asm pipeline only being taken
577 # in compiler.cc GetLazyCode for uncompiled code, and no similar path for eager
578 # code.
579 'test-api/TurboAsmDisablesNeuter': [FAIL],
580
Ben Murdochc5610432016-08-08 18:44:38 +0100581 # TODO(mvstanton,4900): CHECK(!g_function->is_compiled());
582 'test-heap/TestUseOfIncrementalBarrierOnCompileLazy': [FAIL],
583
Ben Murdoch61f157c2016-09-16 13:49:30 +0100584 # BUG(4751). Flaky with Ignition.
585 'test-cpu-profiler/JsNativeJsSample': [SKIP],
Ben Murdochc5610432016-08-08 18:44:38 +0100586}], # ignition or ignition_turbofan
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000587
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000588]