blob: e311ffbcba17f69d2d2208717503213a9e55428d [file] [log] [blame]
yangguo@chromium.orgab30bb82012-02-24 14:41:46 +00001# Copyright 2012 the V8 project authors. All rights reserved.
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +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 mjsunit
29
30# All tests in the bug directory are expected to fail.
mmassi@chromium.org7028c052012-06-13 11:51:58 +000031bugs/*: FAIL
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +000032
kasperl@chromium.orga5551262010-12-07 12:49:48 +000033##############################################################################
ricow@chromium.org4f693d62011-07-04 14:01:31 +000034# Fails.
35regress/regress-1119: FAIL
36
mmassi@chromium.org7028c052012-06-13 11:51:58 +000037# Issue 2177: Debugger on ARM broken due to variable literal pool size.
38debug-liveedit-breakpoints: PASS, SKIP if ($arch == arm)
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +000039
mmassi@chromium.org7028c052012-06-13 11:51:58 +000040# Issue 1719: Slow to collect arrays over several contexts.
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +000041regress/regress-524: SKIP
mmassi@chromium.org7028c052012-06-13 11:51:58 +000042# When that bug is fixed, revert the expectation to:
43# Skip long running test in debug and allow it to timeout in release mode.
44# regress/regress-524: (PASS || TIMEOUT), SKIP if $mode == debug
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +000045
46##############################################################################
kasperl@chromium.orga5551262010-12-07 12:49:48 +000047# Too slow in debug mode with --stress-opt
48compiler/regress-stacktrace-methods: PASS, SKIP if $mode == debug
ager@chromium.org5f0c45f2010-12-17 08:51:21 +000049compiler/regress-funcaller: PASS, SKIP if $mode == debug
50regress/regress-create-exception: PASS, SKIP if $mode == debug
kasperl@chromium.orga5551262010-12-07 12:49:48 +000051
52##############################################################################
kasperl@chromium.org41044eb2008-10-06 08:24:46 +000053# This one uses a built-in that's only present in debug mode. It takes
ricow@chromium.org64e3a4b2011-12-13 08:07:27 +000054# too long to run in debug mode on ARM and MIPS.
55fuzz-natives: PASS, SKIP if ($mode == release || $arch == arm || $arch == mips)
ager@chromium.orgc27e4e72008-09-04 13:52:27 +000056
ager@chromium.orgbb29dc92009-03-24 13:25:23 +000057big-object-literal: PASS, SKIP if ($arch == arm)
58
ager@chromium.org3811b432009-10-28 14:53:37 +000059# Issue 488: this test sometimes times out.
60array-constructor: PASS || TIMEOUT
61
ricow@chromium.org64e3a4b2011-12-13 08:07:27 +000062# Very slow on ARM and MIPS, contains no architecture dependent code.
63unicode-case-overoptimization: PASS, TIMEOUT if ($arch == arm || $arch == mips)
ager@chromium.orgc4c92722009-11-18 14:12:51 +000064
fschneider@chromium.orge03fb642010-11-01 12:34:09 +000065# Stack manipulations in LiveEdit are buggy - see bug 915
66debug-liveedit-check-stack: SKIP
67debug-liveedit-patch-positions-replace: SKIP
jkummerow@chromium.org212d9642012-05-11 15:02:09 +000068debug-liveedit-stack-padding: SKIP
fschneider@chromium.orge03fb642010-11-01 12:34:09 +000069
yangguo@chromium.orgab30bb82012-02-24 14:41:46 +000070# Test Crankshaft compilation time. Expected to take too long in debug mode.
71regress/regress-1969: PASS, SKIP if $mode == debug
72
kasperl@chromium.orga5551262010-12-07 12:49:48 +000073##############################################################################
yangguo@chromium.org78d1ad42012-02-09 13:53:47 +000074[ $isolates ]
75
76# This test sets the umask on a per-process basis and hence cannot be
77# used in multi-threaded runs.
78d8-os: SKIP
79
80##############################################################################
ager@chromium.orgc27e4e72008-09-04 13:52:27 +000081[ $arch == arm ]
82
ager@chromium.org7c537e22008-10-16 08:43:32 +000083# Slow tests which times out in debug mode.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +000084try: PASS, SKIP if $mode == debug
ager@chromium.org7c537e22008-10-16 08:43:32 +000085debug-scripts-request: PASS, SKIP if $mode == debug
christian.plesner.hansen@gmail.com2bc58ef2009-09-22 10:00:30 +000086array-constructor: PASS, SKIP if $mode == debug
kasperl@chromium.org41044eb2008-10-06 08:24:46 +000087
kasperl@chromium.org7be3c992009-03-12 07:19:55 +000088# Flaky test that can hit compilation-time stack overflow in debug mode.
89unicode-test: PASS, (PASS || FAIL) if $mode == debug
90
kasperl@chromium.orge959c182009-07-27 08:59:04 +000091# Times out often in release mode on ARM.
kasperl@chromium.orga5551262010-12-07 12:49:48 +000092compiler/regress-stacktrace-methods: PASS, PASS || TIMEOUT if $mode == release
kasperl@chromium.orge959c182009-07-27 08:59:04 +000093array-splice: PASS || TIMEOUT
ager@chromium.orgc4c92722009-11-18 14:12:51 +000094
kasperl@chromium.orga5551262010-12-07 12:49:48 +000095# Long running test.
96mirror-object: PASS || TIMEOUT
97string-indexof-2: PASS || TIMEOUT
98
99# BUG(3251035): Timeouts in long looping crankshaft optimization
100# tests. Skipping because having them timeout takes too long on the
101# buildbot.
102compiler/alloc-number: SKIP
103compiler/array-length: SKIP
104compiler/assignment-deopt: SKIP
105compiler/deopt-args: SKIP
106compiler/inline-compare: SKIP
107compiler/inline-global-access: SKIP
108compiler/optimized-function-calls: SKIP
109compiler/pic: SKIP
110compiler/property-calls: SKIP
111compiler/recursive-deopt: SKIP
112compiler/regress-4: SKIP
113compiler/regress-funcaller: SKIP
114compiler/regress-gvn: SKIP
115compiler/regress-rep-change: SKIP
116compiler/regress-arguments: SKIP
117compiler/regress-funarguments: SKIP
118compiler/regress-or: SKIP
119compiler/regress-3249650: SKIP
120compiler/simple-deopt: SKIP
121regress/regress-490: SKIP
122regress/regress-634: SKIP
123regress/regress-create-exception: SKIP
124regress/regress-3218915: SKIP
125regress/regress-3247124: SKIP
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000126
sgjesse@chromium.org496c03a2011-02-14 12:05:43 +0000127# Requires bigger stack size in the Genesis and if stack size is increased,
128# the test requires too much time to run. However, the problem test covers
129# should be platform-independent.
130regress/regress-1132: SKIP
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +0000131
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000132##############################################################################
ager@chromium.org5c838252010-02-19 08:53:10 +0000133[ $arch == mips ]
134
ricow@chromium.org64e3a4b2011-12-13 08:07:27 +0000135# Slow tests which times out in debug mode.
136try: PASS, SKIP if $mode == debug
137debug-scripts-request: PASS, SKIP if $mode == debug
138array-constructor: PASS, SKIP if $mode == debug
139
140# Times out often in release mode on MIPS.
141compiler/regress-stacktrace-methods: PASS, PASS || TIMEOUT if $mode == release
142array-splice: PASS || TIMEOUT
143
144# Long running test.
145mirror-object: PASS || TIMEOUT
146string-indexof-2: PASS || TIMEOUT
147
148# BUG(3251035): Timeouts in long looping crankshaft optimization
149# tests. Skipping because having them timeout takes too long on the
150# buildbot.
danno@chromium.org40cb8782011-05-25 07:58:50 +0000151compiler/alloc-number: SKIP
152compiler/array-length: SKIP
153compiler/assignment-deopt: SKIP
154compiler/deopt-args: SKIP
155compiler/inline-compare: SKIP
156compiler/inline-global-access: SKIP
157compiler/optimized-function-calls: SKIP
158compiler/pic: SKIP
159compiler/property-calls: SKIP
160compiler/recursive-deopt: SKIP
161compiler/regress-4: SKIP
162compiler/regress-funcaller: SKIP
163compiler/regress-gvn: SKIP
164compiler/regress-rep-change: SKIP
165compiler/regress-arguments: SKIP
166compiler/regress-funarguments: SKIP
167compiler/regress-or: SKIP
168compiler/regress-3249650: SKIP
169compiler/simple-deopt: SKIP
170regress/regress-490: SKIP
171regress/regress-634: SKIP
172regress/regress-create-exception: SKIP
173regress/regress-3218915: SKIP
174regress/regress-3247124: SKIP
175
ricow@chromium.org64e3a4b2011-12-13 08:07:27 +0000176# Requires bigger stack size in the Genesis and if stack size is increased,
177# the test requires too much time to run. However, the problem test covers
178# should be platform-independent.
179regress/regress-1132: SKIP