• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright 2011 the V8 project authors. All rights reserved.
2# 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
28[
29[ALWAYS, {
30  # All tests prefixed with 'Bug' are expected to fail.
31  'test-api/Bug*': [FAIL],
32  'test-serialize/Bug*': [FAIL],
33
34  ##############################################################################
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],
42  'test-api/SealHandleScope': [FAIL],
43
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
66  # This tests only the type system, no point in running several variants.
67  'test-hydrogen-types/*': [PASS, NO_VARIANTS],
68  'test-types/*': [PASS, NO_VARIANTS],
69
70  # This tests API threading, no point in running several variants.
71  'test-api/Threading*': [PASS, NO_VARIANTS],
72
73  # BUG(2999). The cpu profiler tests are notoriously flaky.
74  'test-cpu-profiler/CpuProfileDeepStack': [SKIP],
75  'test-cpu-profiler/CollectCpuProfile': [SKIP],
76  'test-cpu-profiler/HotDeoptNoFrameEntry': [SKIP],
77  'test-cpu-profiler/SampleWhenFrameIsNotSetup': [SKIP],
78
79  # 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
89  ##############################################################################
90  # TurboFan compiler failures.
91
92  # Some tests are just too slow to run for now.
93  'test-heap/IncrementalMarkingStepMakesBigProgressWithLargeObjects': [PASS, NO_VARIANTS],
94  'test-heap-profiler/ManyLocalsInSharedContext': [PASS, NO_VARIANTS],
95  'test-serialize/CodeSerializerLargeCodeObject': [PASS, NO_VARIANTS],
96  'test-debug/ThreadedDebugging': [PASS, NO_VARIANTS],
97  # BUG(3742).
98  'test-mark-compact/MarkCompactCollector': [PASS, ['arch==arm', NO_VARIANTS]],
99
100  # 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],
103
104  # 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],
125
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]],
132  'test-debug/CallFunctionInDebugger': [PASS, ['mode == debug', SLOW]],
133  'test-strings/StringOOM*': [PASS, ['mode == debug', SKIP]],
134  'test-serialize/CustomSnapshotDataBlobImmortalImmovableRoots': [PASS, ['mode == debug', SKIP]],
135
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-feedback-vector/VectorCallCounts': [PASS, NO_IGNITION],
154  '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
180  # BUG(4751). Flaky with ignition.
181  'test-cpu-profiler/JsNativeJsSample': [PASS, NO_IGNITION],
182}],  # ALWAYS
183
184##############################################################################
185['arch == arm64', {
186
187  'test-cpu-profiler/CollectDeoptEvents': [PASS, FAIL],
188
189  'test-api/Bug618': [PASS],
190
191  # BUG(v8:3385).
192  'test-serialize/StartupSerializerOnceRunScript': [PASS, FAIL],
193  'test-serialize/StartupSerializerTwiceRunScript': [PASS, FAIL],
194
195  # BUG(v8:3154).
196  'test-heap/ReleaseOverReservedPages': [PASS, FAIL],
197
198  # 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],
209
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],
221}],  # '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],
228  'test-api/Threading2': [SKIP],
229}],  # '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],
240}],  # 'arch == arm64 and mode == debug and simulator_run == True'
241
242##############################################################################
243['asan == True', {
244  # Skip tests not suitable for ASAN.
245  'test-assembler-x64/AssemblerX64XchglOperations': [SKIP],
246}],  # 'asan == True'
247
248##############################################################################
249['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##############################################################################
261['no_snap == True', {
262  # Slow tests.
263  'test-api/ExternalWrap': [PASS, SLOW],
264  'test-api/FastReturnValues*': [PASS, SLOW],
265  'test-decls/CrossScriptReferences_Simple2': [PASS, SLOW],
266}],  # 'no_snap == True'
267
268##############################################################################
269# 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'
275
276##############################################################################
277['system == windows', {
278
279  # BUG(3331). Fails on windows.
280  'test-heap/NoWeakHashTableLeakWithIncrementalMarking': [SKIP],
281
282  # BUG(v8:4573).
283  'test-api/MultipleIsolatesOnIndividualThreads': [PASS, NO_VARIANTS],
284
285  # BUG(v8:4642).
286  'test-lockers/LockAndUnlockDifferentIsolates': [PASS, NO_VARIANTS],
287
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],
295}],  # 'system == windows'
296
297##############################################################################
298['byteorder == big', {
299  # TODO(mips-team): Fix Wasm for big-endian.
300  'test-run-wasm-module/Run_WasmModule_CallAdd': [SKIP],
301  'test-run-wasm-module/Run_WasmModule_CallMain_recursive': [SKIP],
302  'test-run-wasm-module/Run_WasmModule_ReadLoadedDataSegment': [SKIP],
303  'test-run-wasm-module/Run_WasmModule_Return114': [SKIP],
304  'test-run-wasm-module/Run_WasmModule_CheckMemoryIsZero': [SKIP],
305  'test-run-wasm-module/Run_WasmModule_Global': [SKIP],
306  'test-run-wasm/RunWasmCompiled_Int32LoadInt16_signext': [SKIP],
307  'test-run-wasm/RunWasmInterpreted_Int32LoadInt16_signext': [SKIP],
308  'test-run-wasm/RunWasmCompiled_Int32LoadInt16_zeroext': [SKIP],
309  'test-run-wasm/RunWasmInterpreted_Int32LoadInt16_zeroext': [SKIP],
310  'test-run-wasm/RunWasmCompiled_MixedGlobals': [SKIP],
311  'test-run-wasm/RunWasmInterpreted_MixedGlobals': [SKIP],
312  'test-run-wasm-64/RunWasmCompiled_I64*': [SKIP],
313  'test-run-wasm-64/RunWasmCompiled_LoadStoreI64_sx': [SKIP],
314  'test-run-wasm-64/RunWasmInterpreted_LoadStoreI64_sx': [SKIP],
315  'test-run-wasm-64/Run_TestI64WasmRunner': [SKIP],
316  'test-run-wasm-64/RunWasmCompiled_Call_Int64Sub': [SKIP],
317  'test-run-wasm-64/RunWasmCompiled_MemI64_Sum': [SKIP],
318}],  # 'byteorder == big'
319
320##############################################################################
321['arch == arm', {
322
323  'test-cpu-profiler/CollectDeoptEvents': [PASS, FAIL],
324
325  # BUG(355): Test crashes on ARM.
326  'test-log/ProfLazyMode': [SKIP],
327
328  # BUG(1075): Unresolved crashes.
329  'test-serialize/StartupSerializerOnce': [SKIP],
330  'test-serialize/StartupSerializerTwice': [SKIP],
331  'test-serialize/StartupSerializerOnceRunScript': [SKIP],
332  'test-serialize/StartupSerializerTwiceRunScript': [SKIP],
333
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],
340}],  # 'arch == arm'
341
342##############################################################################
343['arch == mipsel or arch == mips', {
344  'test-cpu-profiler/CollectDeoptEvents': [PASS, FAIL],
345
346  # TODO(mips-team): Improve code-size on large RegExp's.
347  'test-heap/TestSizeOfRegExpCode':  [SKIP],
348
349  # BUG(1075): Unresolved crashes on MIPS also.
350  'test-serialize/StartupSerializerOnce': [SKIP],
351  'test-serialize/StartupSerializerTwice': [SKIP],
352  'test-serialize/StartupSerializerOnceRunScript': [SKIP],
353  'test-serialize/StartupSerializerTwiceRunScript': [SKIP],
354}],  # 'arch == mipsel or arch == mips'
355
356##############################################################################
357['arch == mips', {
358  # Too slow with TF.
359  'test-api/ExternalArrays': [PASS, NO_VARIANTS],
360
361  # TODO(mips-team): Currently fails on mips board.
362  'test-parsing/TooManyArguments': [SKIP],
363  'test-api/Threading3': [SKIP],
364}],  # 'arch == mips'
365
366##############################################################################
367['arch == mips64el or arch == mips64', {
368  'test-cpu-profiler/CollectDeoptEvents': [PASS, FAIL],
369
370  # BUG(v8:3154).
371  'test-heap/ReleaseOverReservedPages': [PASS, FAIL],
372
373  # TODO(mips-team): Improve code-size on large RegExp's.
374  'test-heap/TestSizeOfRegExpCode':  [SKIP],
375
376  # BUG(1075): Unresolved crashes on MIPS also.
377  'test-serialize/StartupSerializerOnce': [SKIP],
378  'test-serialize/StartupSerializerTwice': [SKIP],
379  'test-serialize/StartupSerializerOnceRunScript': [SKIP],
380  'test-serialize/StartupSerializerTwiceRunScript': [SKIP],
381}],  # 'arch == mips64el or arch == mips64'
382
383##############################################################################
384['arch == x87', {
385  '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],
394  'test-run-machops/RunFloat64Sin': [SKIP],
395  'test-run-machops/RunFloat64Cos': [SKIP],
396  'test-run-machops/RunFloat64Expm1': [SKIP],
397  'test-run-machops/RunFloat64Tan': [SKIP],
398  'test-cpu-profiler/Inlining': [SKIP],
399  'test-gap-resolver/FuzzResolver': [SKIP],
400}],  # '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],
409}],  # '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],
417  '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'
515
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
545##############################################################################
546['ignition or ignition_turbofan', {
547  # TODO(rmcilroy,4680): Related to lack of code flushing. Check failed: !function->shared()->is_compiled() || function->IsOptimized().
548  '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
554  # 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],
558
559  # TODO(mythria,4780): Related to type feedback support for calls.
560  'test-feedback-vector/VectorCallICStates': [FAIL],
561  'test-feedback-vector/VectorCallCounts': [FAIL],
562  'test-compiler/FeedbackVectorPreservedAcrossRecompiles': [FAIL],
563  'test-heap/WeakFunctionInConstructor': [FAIL],
564  'test-heap/IncrementalMarkingClearsMonomorphicConstructor': [FAIL],
565  'test-heap/IncrementalMarkingPreservesMonomorphicConstructor': [FAIL],
566  'test-heap/IncrementalMarkingPreservesMonomorphicCallIC': [FAIL],
567  'test-heap/CellsInOptimizedCodeAreWeak': [FAIL],
568
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
581  # TODO(mvstanton,4900): CHECK(!g_function->is_compiled());
582  'test-heap/TestUseOfIncrementalBarrierOnCompileLazy': [FAIL],
583
584  # BUG(4751). Flaky with Ignition.
585  'test-cpu-profiler/JsNativeJsSample': [SKIP],
586}],  # ignition or ignition_turbofan
587
588]
589