blob: e1da00d99709fee5eea2e764346eb5e475549aea [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],
153 'test-compiler/FeedbackVectorPreservedAcrossRecompiles': [PASS, NO_IGNITION],
154 'test-heap/WeakFunctionInConstructor': [PASS, NO_IGNITION],
155 'test-heap/IncrementalMarkingClearsMonomorphicConstructor': [PASS, NO_IGNITION],
156 'test-heap/IncrementalMarkingPreservesMonomorphicConstructor': [PASS, NO_IGNITION],
157 'test-heap/IncrementalMarkingPreservesMonomorphicCallIC': [PASS, NO_IGNITION],
158 'test-heap/CellsInOptimizedCodeAreWeak': [PASS, NO_IGNITION],
159
160 # TODO(mythria,4680): Lack of code-ageing in interpreter.
161 'test-heap/Regress169209': [PASS, NO_IGNITION],
162
163 # TODO(mythria,4680): Lack of code-ageing and/or lack of compilation cache
164 # in interpreter.
165 'test-heap/CompilationCacheCachingBehavior': [PASS, NO_IGNITION],
166
167 # TODO(mstarzinger,4680): Fails due to the turbo-asm pipeline only being taken
168 # in compiler.cc GetLazyCode for uncompiled code, and no similar path for eager
169 # code.
170 'test-api/TurboAsmDisablesNeuter': [PASS, NO_IGNITION],
171
172 # TODO(mvstanton,4900): CHECK(!g_function->is_compiled());
173 'test-heap/TestUseOfIncrementalBarrierOnCompileLazy': [PASS, NO_IGNITION],
174
175 # BUG(rmcilroy,4680): Function is optimized without type feedback and so immediately deopts again, causing check failure in the test.
176 'test-heap/ResetSharedFunctionInfoCountersDuringIncrementalMarking': [PASS, NO_IGNITION],
177 'test-heap/ResetSharedFunctionInfoCountersDuringMarkSweep': [PASS, NO_IGNITION],
178
179 # BUG(4751). Flaky with ignition and tsan.
180 'test-cpu-profiler/JsNativeJsSample': [PASS, ['tsan', NO_IGNITION]],
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000181}], # ALWAYS
Steve Block6ded16b2010-05-10 14:33:55 +0100182
Ben Murdochb0fe1622011-05-05 13:52:32 +0100183##############################################################################
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000184['arch == arm64', {
Steve Blocka7e24c12009-10-30 11:49:00 +0000185
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000186 'test-cpu-profiler/CollectDeoptEvents': [PASS, FAIL],
187
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000188 'test-api/Bug618': [PASS],
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100189
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000190 # BUG(v8:3385).
Ben Murdochda12d292016-06-02 14:46:10 +0100191 'test-serialize/StartupSerializerOnceRunScript': [PASS, FAIL],
192 'test-serialize/StartupSerializerTwiceRunScript': [PASS, FAIL],
Steve Block3ce2e202009-11-05 08:53:23 +0000193
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000194 # BUG(v8:3154).
195 'test-heap/ReleaseOverReservedPages': [PASS, FAIL],
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100196
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000197 # BUG(v8:3155).
198 'test-strings/OneByteArrayJoin': [PASS, ['mode == debug', FAIL]],
199
200 # BUG(v8:3247).
201 'test-mark-compact/NoPromotion': [SKIP],
202
203 # BUG(v8:3446).
204 'test-mark-compact/Promotion': [PASS, FAIL],
205
206 # BUG(v8:3434).
207 ' test-api/LoadICFastApi_DirectCall_GCMoveStubWithProfiler': [SKIP],
Ben Murdochda12d292016-06-02 14:46:10 +0100208
209 # BUG(v8:4795).
210 'test-run-wasm-js/Run_JSSelectAlign_0': [SKIP],
211 'test-run-wasm-js/Run_JSSelectAlign_2': [SKIP],
212 'test-run-wasm-js/Run_JSSelectAlign_4': [SKIP],
213 'test-run-wasm-js/Run_JSSelect_0': [SKIP],
214 'test-run-wasm-js/Run_JSSelect_1': [SKIP],
215 'test-run-wasm-js/Run_JSSelect_2': [SKIP],
216 'test-run-wasm-js/Run_JSSelect_3': [SKIP],
217 'test-run-wasm-js/Run_JSSelect_4': [SKIP],
218 'test-run-wasm-js/Run_JSSelect_5': [SKIP],
219 'test-run-wasm-js/Run_JSSelect_6': [SKIP],
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000220}], # 'arch == arm64'
221
222['arch == arm64 and simulator_run == True', {
223
224 # Pass but take too long with the simulator.
225 'test-api/ExternalArrays': [PASS, TIMEOUT],
226 'test-api/Threading1': [SKIP],
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000227 'test-api/Threading2': [SKIP],
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000228}], # 'arch == arm64 and simulator_run == True'
229
230['arch == arm64 and mode == debug and simulator_run == True', {
231
232 # Pass but take too long with the simulator in debug mode.
233 'test-api/ExternalDoubleArray': [SKIP],
234 'test-api/ExternalFloat32Array': [SKIP],
235 'test-api/ExternalFloat64Array': [SKIP],
236 'test-api/ExternalFloatArray': [SKIP],
237 'test-api/Float32Array': [SKIP],
238 'test-api/Float64Array': [SKIP],
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000239}], # 'arch == arm64 and mode == debug and simulator_run == True'
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000240
Ben Murdochb0fe1622011-05-05 13:52:32 +0100241##############################################################################
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000242['asan == True', {
243 # Skip tests not suitable for ASAN.
244 'test-assembler-x64/AssemblerX64XchglOperations': [SKIP],
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000245}], # 'asan == True'
Ben Murdoch8b112d22011-06-08 16:22:53 +0100246
Ben Murdochb0fe1622011-05-05 13:52:32 +0100247##############################################################################
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000248['msan == True', {
249 # ICU upstream issues.
250 'test-strings/CountBreakIterator': [SKIP],
251
252 # Slow tests.
253 'test-api/Threading1': [PASS, SLOW],
254 'test-api/Threading2': [PASS, SLOW],
255 'test-api/Threading3': [PASS, SLOW],
256 'test-api/Threading4': [PASS, SLOW],
257}], # 'msan == True'
258
259##############################################################################
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000260['no_snap == True', {
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000261 # Slow tests.
262 'test-api/ExternalWrap': [PASS, SLOW],
263 'test-api/FastReturnValues*': [PASS, SLOW],
264 'test-decls/CrossScriptReferences_Simple2': [PASS, SLOW],
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000265}], # 'no_snap == True'
Ben Murdochb0fe1622011-05-05 13:52:32 +0100266
267##############################################################################
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000268# TODO(machenbach): Fix application of '*'. Nosnap windows needs a separate
269# section to not overwrite the expectations for TestThatAlwaysFails.
270['no_snap == True and system == windows', {
271 # Windows doesn't support nosnap mode.
272 'test-serialize/*': [SKIP],
273}], # 'no_snap == True and system == windows'
Ben Murdochc7cc0282012-03-05 14:35:55 +0000274
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000275##############################################################################
276['system == windows', {
277
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000278 # BUG(3331). Fails on windows.
279 'test-heap/NoWeakHashTableLeakWithIncrementalMarking': [SKIP],
280
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000281 # BUG(v8:4573).
282 'test-api/MultipleIsolatesOnIndividualThreads': [PASS, NO_VARIANTS],
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000283
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000284 # BUG(v8:4642).
285 'test-lockers/LockAndUnlockDifferentIsolates': [PASS, NO_VARIANTS],
Ben Murdochda12d292016-06-02 14:46:10 +0100286
287 # BUG(v8:2999,v8:4751).
288 'test-cpu-profiler/CollectDeoptEvents': [SKIP],
289 'test-cpu-profiler/FunctionCallSample': [SKIP],
290 'test-cpu-profiler/JsNativeJsRuntimeJsSample': [SKIP],
291 'test-cpu-profiler/JsNativeJsRuntimeJsSampleMultiple': [SKIP],
292 'test-cpu-profiler/JsNativeJsSample': [SKIP],
293 'test-cpu-profiler/JsNative1JsNative2JsSample': [SKIP],
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000294}], # 'system == windows'
295
296##############################################################################
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000297['byteorder == big', {
298 # TODO(mips-team): Fix Wasm for big-endian.
Ben Murdoch097c5b22016-05-18 11:27:45 +0100299 'test-run-wasm-module/Run_WasmModule_CallAdd': [SKIP],
Ben Murdoch097c5b22016-05-18 11:27:45 +0100300 'test-run-wasm-module/Run_WasmModule_CallMain_recursive': [SKIP],
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000301 'test-run-wasm-module/Run_WasmModule_ReadLoadedDataSegment': [SKIP],
Ben Murdoch097c5b22016-05-18 11:27:45 +0100302 'test-run-wasm-module/Run_WasmModule_Return114': [SKIP],
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000303 'test-run-wasm-module/Run_WasmModule_CheckMemoryIsZero': [SKIP],
304 'test-run-wasm-module/Run_WasmModule_Global': [SKIP],
Ben Murdochc5610432016-08-08 18:44:38 +0100305 'test-run-wasm/RunWasmCompiled_Int32LoadInt16_signext': [SKIP],
306 'test-run-wasm/RunWasmCompiled_Int32LoadInt16_zeroext': [SKIP],
307 'test-run-wasm/RunWasmCompiled_MixedGlobals': [SKIP],
308 'test-run-wasm-64/RunWasmCompiled_I64*': [SKIP],
309 'test-run-wasm-64/RunWasmCompiled_LoadStoreI64_sx': [SKIP],
Ben Murdochda12d292016-06-02 14:46:10 +0100310 'test-run-wasm-64/Run_TestI64WasmRunner': [SKIP],
Ben Murdochc5610432016-08-08 18:44:38 +0100311 'test-run-wasm-64/RunWasmCompiled_Call_Int64Sub': [SKIP],
312 'test-run-wasm-64/RunWasmCompiled_MemI64_Sum': [SKIP],
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000313}], # 'byteorder == big'
314
315##############################################################################
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000316['arch == arm', {
317
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000318 'test-cpu-profiler/CollectDeoptEvents': [PASS, FAIL],
319
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000320 # BUG(355): Test crashes on ARM.
321 'test-log/ProfLazyMode': [SKIP],
322
323 # BUG(1075): Unresolved crashes.
Ben Murdochda12d292016-06-02 14:46:10 +0100324 'test-serialize/StartupSerializerOnce': [SKIP],
325 'test-serialize/StartupSerializerTwice': [SKIP],
326 'test-serialize/StartupSerializerOnceRunScript': [SKIP],
327 'test-serialize/StartupSerializerTwiceRunScript': [SKIP],
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000328
329 ############################################################################
330 # Slow tests.
331 'test-api/Threading1': [PASS, SLOW],
332 'test-api/Threading2': [PASS, SLOW],
333 'test-api/Threading3': [PASS, SLOW],
334 'test-api/Threading4': [PASS, SLOW],
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000335}], # 'arch == arm'
336
337##############################################################################
338['arch == mipsel or arch == mips', {
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000339 'test-cpu-profiler/CollectDeoptEvents': [PASS, FAIL],
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000340
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000341 # TODO(mips-team): Improve code-size on large RegExp's.
342 'test-heap/TestSizeOfRegExpCode': [SKIP],
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000343
344 # BUG(1075): Unresolved crashes on MIPS also.
Ben Murdochda12d292016-06-02 14:46:10 +0100345 'test-serialize/StartupSerializerOnce': [SKIP],
346 'test-serialize/StartupSerializerTwice': [SKIP],
347 'test-serialize/StartupSerializerOnceRunScript': [SKIP],
348 'test-serialize/StartupSerializerTwiceRunScript': [SKIP],
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000349}], # 'arch == mipsel or arch == mips'
350
351##############################################################################
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400352['arch == mips', {
353 # Too slow with TF.
354 'test-api/ExternalArrays': [PASS, NO_VARIANTS],
355
356 # TODO(mips-team): Currently fails on mips board.
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400357 'test-parsing/TooManyArguments': [SKIP],
358 'test-api/Threading3': [SKIP],
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400359}], # 'arch == mips'
360
361##############################################################################
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000362['arch == mips64el or arch == mips64', {
363 'test-cpu-profiler/CollectDeoptEvents': [PASS, FAIL],
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000364
365 # BUG(v8:3154).
366 'test-heap/ReleaseOverReservedPages': [PASS, FAIL],
367
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000368 # TODO(mips-team): Improve code-size on large RegExp's.
369 'test-heap/TestSizeOfRegExpCode': [SKIP],
370
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000371 # BUG(1075): Unresolved crashes on MIPS also.
Ben Murdochda12d292016-06-02 14:46:10 +0100372 'test-serialize/StartupSerializerOnce': [SKIP],
373 'test-serialize/StartupSerializerTwice': [SKIP],
374 'test-serialize/StartupSerializerOnceRunScript': [SKIP],
375 'test-serialize/StartupSerializerTwiceRunScript': [SKIP],
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000376}], # 'arch == mips64el or arch == mips64'
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000377
378##############################################################################
379['arch == x87', {
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000380 'test-run-machops/RunFloat64InsertLowWord32': [SKIP],
381 'test-run-native-calls/MixedParams_0': [SKIP],
382 'test-run-native-calls/MixedParams_1': [SKIP],
383 'test-run-native-calls/MixedParams_2': [SKIP],
384 'test-run-native-calls/MixedParams_3': [SKIP],
385 'test-run-machops/RunFloat64MulAndFloat64Add1': [SKIP],
386 'test-run-machops/RunFloat64MulAndFloat64Add2': [SKIP],
387 'test-run-machops/RunFloat64MulAndFloat64Sub1': [SKIP],
388 'test-run-machops/RunFloat64MulAndFloat64Sub2': [SKIP],
Ben Murdochda12d292016-06-02 14:46:10 +0100389 'test-cpu-profiler/Inlining': [SKIP],
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000390}], # 'arch == x87'
391
392##############################################################################
393['arch == android_arm or arch == android_ia32', {
394
395 # Tests crash as there is no /tmp directory in Android.
396 'test-log/LogAccessorCallbacks': [SKIP],
397 'test-log/LogCallbacks': [SKIP],
398 'test-log/ProfLazyMode': [SKIP],
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000399}], # 'arch == android_arm or arch == android_ia32'
400
401##############################################################################
402['arch == nacl_ia32 or arch == nacl_x64', {
403
404 # NaCl builds have problems with threaded tests since Pepper_28.
405 # V8 Issue 2786
406 'test-api/Threading1': [SKIP],
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000407 'test-lockers/ExtensionsRegistration': [SKIP],
408
409 # These tests fail as there is no /tmp directory in Native Client.
410 'test-log/LogAccessorCallbacks': [SKIP],
411 'test-log/LogCallbacks': [SKIP],
412 'test-log/ProfLazyMode': [SKIP],
413
414 # Native Client doesn't support sockets.
415 'test-debug/DebuggerAgent': [SKIP],
416 'test-debug/DebuggerAgentProtocolOverflowHeader': [SKIP],
417 'test-socket/Socket': [SKIP],
418
419 # Profiling doesn't work on Native Client.
420 'test-cpu-profiler/*': [SKIP],
421
422 # Fails since 16322 (new test).
423 'test-code-stubs-arm/ConvertDToI': [SKIP],
424
425 # BUG(2998).
426 'test-macro-assembler-arm/LoadAndStoreWithRepresentation': [SKIP],
427
428 # BUG(3150).
429 'test-api/PreCompileInvalidPreparseDataError': [SKIP],
430
431 'test-types/Convert' : [SKIP],
432 'test-symbols/Create' : [SKIP],
433 'test-parsing/ParserSync' : [SKIP],
434 'test-parsing/ErrorsEvalAndArguments' : [SKIP],
435 'test-parsing/ErrorsFutureStrictReservedWords' : [SKIP],
436 'test-parsing/ErrorsReservedWords' : [SKIP],
437 'test-parsing/ErrorsYieldStrict' : [SKIP],
438 'test-parsing/ErrorsNotAnIdentifierName' : [SKIP],
439 'test-parsing/FunctionDeclaresItselfStrict' : [SKIP],
440 'test-parsing/ErrorsObjectLiteralChecking' : [SKIP],
441 'test-parsing/InvalidLeftHandSide' : [SKIP],
442 'test-heap/GarbageCollection' : [SKIP],
443 'test-heap/GlobalHandles' : [SKIP],
444 'test-heap/WeakGlobalHandlesScavenge' : [SKIP],
445 'test-heap/DeleteWeakGlobalHandle' : [SKIP],
446 'test-heap/GrowAndShrinkNewSpace' : [SKIP],
447 'test-heap/OptimizedAllocationAlwaysInNewSpace' : [SKIP],
448 'test-heap/OptimizedPretenuringAllocationFolding' : [SKIP],
449 'test-heap/OptimizedPretenuringObjectArrayLiterals' : [SKIP],
450 'test-heap/OptimizedPretenuringAllocationFoldingBlocks' : [SKIP],
451 'test-heap/OptimizedPretenuringMixedInObjectProperties' : [SKIP],
452 'test-heap/OptimizedPretenuringDoubleArrayProperties' : [SKIP],
453 'test-heap/OptimizedPretenuringdoubleArrayLiterals' : [SKIP],
454 'test-heap/OptimizedPretenuringNestedMixedArrayLiterals' : [SKIP],
455 'test-heap/OptimizedPretenuringNestedObjectLiterals' : [SKIP],
456 'test-heap/OptimizedPretenuringNestedDoubleLiterals' : [SKIP],
457 'test-heap/Regress169928' : [SKIP],
458 'test-decls/Unknown' : [SKIP],
459 'test-decls/Present' : [SKIP],
460 'test-decls/Absent' : [SKIP],
461 'test-decls/Appearing' : [SKIP],
462 'test-decls/Reappearing' : [SKIP],
463 'test-decls/ExistsInPrototype' : [SKIP],
464 'test-decls/AbsentInPrototype' : [SKIP],
465 'test-decls/ExistsInHiddenPrototype' : [SKIP],
466 'test-debug/ConditionalScriptBreakPoint' : [SKIP],
467 'test-debug/DebugEvaluate' : [SKIP],
468 'test-debug/ConditionalBreakpointWithCodeGenerationDisallowed' : [SKIP],
469 'test-debug/DebugEvaluateWithCodeGenerationDisallowed' : [SKIP],
470 'test-debug/DebugBreak' : [SKIP],
471 'test-debug/ThreadedDebugging' : [SKIP],
472 'test-debug/RecursiveBreakpoints' : [SKIP],
473 'test-dictionary/HashMap' : [SKIP],
474 'test-debug/Backtrace' : [SKIP],
475 'test-debug/DebugBreakLoop' : [SKIP],
476 'test-constantpool/ConstantPool' : [SKIP],
477 'test-compiler/GetScriptLineNumber' : [SKIP],
478 'test-api/ScriptMakingExternalString' : [SKIP],
479 'test-api/ScriptMakingExternalOneByteString' : [SKIP],
480 'test-api/MakingExternalStringConditions' : [SKIP],
481 'test-api/MakingExternalOneByteStringConditions' : [SKIP],
482 'test-api/MakingExternalUnalignedOneByteString' : [SKIP],
483 'test-api/IndexedInterceptorUnboxedDoubleWithIndexedAccessor' : [SKIP],
484 'test-api/IndependentWeakHandle' : [SKIP],
485 'test-api/GCFromWeakCallbacks' : [SKIP],
486 'test-api/IndependentHandleRevival' : [SKIP],
487 'test-api/StringWrite' : [SKIP],
488 'test-api/Threading3' : [SKIP],
489 'test-api/Threading4' : [SKIP],
490 'test-api/Threading2' : [SKIP],
491 'test-api/FixedFloat32Array' : [SKIP],
492 'test-api/FixedFloat64Array' : [SKIP],
493 'test-api/ExternalFloat32Array' : [SKIP],
494 'test-api/ExternalFloat64Array' : [SKIP],
495 'test-api/ExternalArrays' : [SKIP],
496 'test-api/Float32Array' : [SKIP],
497 'test-api/Float64Array' : [SKIP],
498 'test-api/Regress2333' : [SKIP],
499 'test-alloc/StressHandles' : [SKIP],
500 'test-alloc/StressJS' : [SKIP],
501 'test-accessors/HandleScopePop' : [SKIP],
502 'test-accessors/Gc' : [SKIP],
503
504}], # 'arch == nacl_ia32 or arch == nacl_x64'
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000505
506##############################################################################
507['system == aix and arch == ppc64', {
508
509 # BUG 2857
510 'test-log/EquivalenceOfLoggingAndTraversal' : [SKIP],
511
512}], # 'system == aix and arch == ppc64'
513
514##############################################################################
515['system == aix or (arch == ppc64 and byteorder == big)', {
516
517 # TODO(ppc): Fix for platforms with function desciptors.
518 'test-run-machops/RunComputedCodeObject' : [SKIP],
519 'test-run-wasm-module/Run_WasmModule_Return114' : [SKIP],
520 'test-run-wasm-module/Run_WasmModule_CallAdd' : [SKIP],
521 'test-run-wasm-module/Run_WasmModule_CallMain_recursive' : [SKIP],
522
523}], # 'system == aix or (arch == ppc64 and byteorder == big)'
524
525##############################################################################
526['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == True', {
527
528 # Pass but take too long with the simulator.
529 'test-api/Threading1': [PASS, SLOW],
530 'test-api/Threading2': [PASS, SLOW],
531 'test-api/ExternalArrays': [PASS, SLOW],
532
533}], # 'arch == ppc64 and simulator_run == True'
534
Ben Murdochda12d292016-06-02 14:46:10 +0100535##############################################################################
Ben Murdochc5610432016-08-08 18:44:38 +0100536['ignition or ignition_turbofan', {
537 # TODO(rmcilroy,4680): Related to lack of code flushing. Check failed: !function->shared()->is_compiled() || function->IsOptimized().
Ben Murdoch097c5b22016-05-18 11:27:45 +0100538 'test-heap/TestCodeFlushingPreAged': [FAIL],
539 'test-heap/TestCodeFlushingIncrementalScavenge': [FAIL],
540 'test-heap/TestCodeFlushing': [FAIL],
541 'test-heap/TestCodeFlushingIncremental': [FAIL],
542 'test-heap/TestCodeFlushingIncrementalAbort': [PASS, ['mode == debug or dcheck_always_on == True', FAIL]],
543
Ben Murdochda12d292016-06-02 14:46:10 +0100544 # TODO(rmcilroy,4766): Requires BytecodeGraphBuilder to track source position
545 # on nodes (behind --turbo_source_positions flag).
546 'test-cpu-profiler/TickLinesOptimized': [FAIL],
Ben Murdoch097c5b22016-05-18 11:27:45 +0100547
Ben Murdochda12d292016-06-02 14:46:10 +0100548 # TODO(rmcilroy,4680): Fails to find the correct function name for the
549 # anonymous function. Fails without ignition but with --no-lazy also, so seems
550 # to be an issue when eagerly parsing.
551 'test-func-name-inference/ReturnAnonymousFunction': [FAIL],
Ben Murdoch097c5b22016-05-18 11:27:45 +0100552
Ben Murdochda12d292016-06-02 14:46:10 +0100553 # TODO(mythria,4780): Related to type feedback support for calls.
Ben Murdoch097c5b22016-05-18 11:27:45 +0100554 'test-feedback-vector/VectorCallICStates': [FAIL],
555 'test-compiler/FeedbackVectorPreservedAcrossRecompiles': [FAIL],
Ben Murdoch097c5b22016-05-18 11:27:45 +0100556 'test-heap/WeakFunctionInConstructor': [FAIL],
Ben Murdoch097c5b22016-05-18 11:27:45 +0100557 'test-heap/IncrementalMarkingClearsMonomorphicConstructor': [FAIL],
558 'test-heap/IncrementalMarkingPreservesMonomorphicConstructor': [FAIL],
559 'test-heap/IncrementalMarkingPreservesMonomorphicCallIC': [FAIL],
Ben Murdoch097c5b22016-05-18 11:27:45 +0100560 'test-heap/CellsInOptimizedCodeAreWeak': [FAIL],
Ben Murdochda12d292016-06-02 14:46:10 +0100561
562 # TODO(mythria,4680): Lack of code-ageing in interpreter.
563 'test-heap/Regress169209': [FAIL],
564
565 # TODO(mythria,4680): Lack of code-ageing and/or lack of compilation cache
566 # in interpreter.
567 'test-heap/CompilationCacheCachingBehavior': [FAIL],
568
569 # TODO(mstarzinger,4680): Fails due to the turbo-asm pipeline only being taken
570 # in compiler.cc GetLazyCode for uncompiled code, and no similar path for eager
571 # code.
572 'test-api/TurboAsmDisablesNeuter': [FAIL],
573
Ben Murdochc5610432016-08-08 18:44:38 +0100574 # TODO(mvstanton,4900): CHECK(!g_function->is_compiled());
575 'test-heap/TestUseOfIncrementalBarrierOnCompileLazy': [FAIL],
576
Ben Murdochda12d292016-06-02 14:46:10 +0100577 # TODO(rmcilroy,4837): We don't set a LoadContextSlot for a function as
578 # immutable in the BytecodeGraphBuilder, therefore no inlining happens.
579 'test-run-inlining/InlineLoopGuardedTwice': [FAIL],
580 'test-run-inlining/InlineSurplusArgumentsDeopt': [FAIL],
Ben Murdoch097c5b22016-05-18 11:27:45 +0100581 'test-run-inlining/InlineTwice': [FAIL],
Ben Murdochda12d292016-06-02 14:46:10 +0100582 'test-run-inlining/InlineSurplusArgumentsObject': [FAIL],
583 'test-run-inlining/InlineTwiceDependentDiamond': [FAIL],
584 'test-run-inlining/InlineWithArguments': [FAIL],
585 'test-run-inlining/InlineLoopUnguardedTwice': [FAIL],
586 'test-run-inlining/InlineOmitArgumentsObject': [FAIL],
587 'test-run-inlining/InlineLoopUnguardedOnce': [FAIL],
588 'test-run-inlining/InlineOmitArgumentsDeopt': [FAIL],
589 'test-run-inlining/InlineTwiceDependentDiamondDifferent': [FAIL],
590 'test-run-inlining/SimpleInliningContext': [FAIL],
591 'test-run-inlining/InlineMutuallyRecursive': [FAIL],
592 'test-run-inlining/InlineLoopGuardedEmpty': [FAIL],
593 'test-run-inlining/InlineLoopGuardedOnce': [FAIL],
594 'test-run-inlining/InlineOmitArguments': [FAIL],
595 'test-run-inlining/SimpleInlining': [FAIL],
596 'test-run-inlining/InlineLoopUnguardedEmpty': [FAIL],
597 'test-run-inlining/InlineNestedBuiltin': [FAIL],
598 'test-run-inlining/InlineSurplusArguments': [FAIL],
599 'test-run-inlining/InlineBuiltin': [FAIL],
600 'test-run-inlining/InlineTwiceDependent': [FAIL],
601 'test-run-inlining/SimpleInliningContextDeopt': [FAIL],
Ben Murdochc5610432016-08-08 18:44:38 +0100602
603 # BUG(4751). Flaky with ignition and tsan.
604 'test-cpu-profiler/JsNativeJsSample': [PASS, ['tsan', SKIP]],
605}], # ignition or ignition_turbofan
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000606
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000607]