blob: 8ce11eb3904bf317d62c0085d7ea92b7ef67f830 [file] [log] [blame]
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +00001# Copyright 2011 the V8 project authors. All rights reserved.
ager@chromium.orgc27e4e72008-09-04 13:52:27 +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
28prefix cctest
29
svenpanne@chromium.org830d30c2012-05-29 13:20:14 +000030# All tests prefixed with 'Bug' are expected to fail.
ager@chromium.orgce5e87b2010-03-10 10:24:18 +000031test-api/Bug*: FAIL
32
kasperl@chromium.orga5551262010-12-07 12:49:48 +000033##############################################################################
ager@chromium.org5aa501c2009-06-23 07:57:28 +000034# BUG(382): Weird test. Can't guarantee that it never times out.
35test-api/ApplyInterruption: PASS || TIMEOUT
36
ager@chromium.org3811b432009-10-28 14:53:37 +000037# These tests always fail. They are here to test test.py. If
38# they don't fail then test.py has failed.
39test-serialize/TestThatAlwaysFails: FAIL
40test-serialize/DependentTestThatAlwaysFails: FAIL
41
mstarzinger@chromium.orgde886792012-09-11 13:22:37 +000042# This test always fails. It tests that LiveEdit causes abort when turned off.
43test-debug/LiveEditDisabled: FAIL
44
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +000045# TODO(gc): Temporarily disabled in the GC branch.
46test-log/EquivalenceOfLoggingAndTraversal: PASS || FAIL
47
kmillikin@chromium.org7c2628c2011-08-10 11:27:35 +000048# We do not yet shrink weak maps after they have been emptied by the GC
49test-weakmaps/Shrinking: FAIL
50
yangguo@chromium.org46a2a512013-01-18 16:29:40 +000051# Deferred stack trace formatting is temporarily disabled.
52test-heap/ReleaseStackTraceData: PASS || FAIL
53
rossberg@chromium.org79e79022013-06-03 15:43:46 +000054# Boot up memory use is bloated in debug mode.
55test-mark-compact/BootUpMemoryUse: PASS, PASS || FAIL if $mode == debug
56
kasperl@chromium.orga5551262010-12-07 12:49:48 +000057##############################################################################
yangguo@chromium.org304cc332012-07-24 07:59:48 +000058[ $arch == arm ]
ager@chromium.orgc27e4e72008-09-04 13:52:27 +000059
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +000060# We cannot assume that we can throw OutOfMemory exceptions in all situations.
61# Apparently our ARM box is in such a state. Skip the test as it also runs for
62# a long time.
63test-api/OutOfMemory: SKIP
64test-api/OutOfMemoryNested: SKIP
65
kasperl@chromium.org71affb52009-05-26 05:44:31 +000066# BUG(355): Test crashes on ARM.
67test-log/ProfLazyMode: SKIP
ager@chromium.org5c838252010-02-19 08:53:10 +000068
ager@chromium.orga9aa5fa2011-04-13 08:46:07 +000069# BUG(1075): Unresolved crashes.
ricow@chromium.orgdcebac02011-04-20 09:44:50 +000070test-serialize/Deserialize: SKIP
71test-serialize/DeserializeFromSecondSerializationAndRunScript2: SKIP
72test-serialize/DeserializeAndRunScript2: SKIP
73test-serialize/DeserializeFromSecondSerialization: SKIP
ager@chromium.orga9aa5fa2011-04-13 08:46:07 +000074
yangguo@chromium.org304cc332012-07-24 07:59:48 +000075##############################################################################
verwaest@chromium.orgd4be0f02013-06-05 13:39:03 +000076[ $arch == mipsel ]
77
78# BUG(2628): The test sometimes fails on MIPS simulator.
79test-cpu-profiler/SampleWhenFrameIsNotSetup: PASS || FAIL
80
81##############################################################################
yangguo@chromium.org304cc332012-07-24 07:59:48 +000082[ $arch == android_arm || $arch == android_ia32 ]
83
84# Tests crash as there is no /tmp directory in Android.
85test-log/LogAccessorCallbacks: SKIP
86test-log/LogCallbacks: SKIP
87test-log/ProfLazyMode: SKIP
88
89# platform-tls.h does not contain an ANDROID-related header.
90test-platform-tls/FastTLS: SKIP
rossberg@chromium.org89e18f52012-10-22 13:09:53 +000091
92# This test times out.
93test-threads/ThreadJoinSelf: SKIP
mstarzinger@chromium.orge27d6172013-04-17 11:51:44 +000094
95##############################################################################
96[ $arch == nacl_ia32 || $arch == nacl_x64 ]
97
98# These tests fail as there is no /tmp directory in Native Client.
99test-log/LogAccessorCallbacks: SKIP
100test-log/LogCallbacks: SKIP
101test-log/ProfLazyMode: SKIP
102
103# Native Client doesn't support sockets.
104test-debug/DebuggerAgent: SKIP
105test-debug/DebuggerAgentProtocolOverflowHeader: SKIP
106test-sockets/Socket: SKIP
danno@chromium.orgf005df62013-04-30 16:36:45 +0000107
108# Profiling doesn't work on Native Client.
ulan@chromium.org57ff8812013-05-10 08:16:55 +0000109test-cpu-profiler/*: SKIP