blob: 0bf378b4762b4833bffcbd441838ccb3479296a3 [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 1719: Slow to collect arrays over several contexts.
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +000038regress/regress-524: SKIP
mmassi@chromium.org7028c052012-06-13 11:51:58 +000039# When that bug is fixed, revert the expectation to:
40# Skip long running test in debug and allow it to timeout in release mode.
41# regress/regress-524: (PASS || TIMEOUT), SKIP if $mode == debug
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +000042
43##############################################################################
kasperl@chromium.orga5551262010-12-07 12:49:48 +000044# Too slow in debug mode with --stress-opt
45compiler/regress-stacktrace-methods: PASS, SKIP if $mode == debug
ager@chromium.org5f0c45f2010-12-17 08:51:21 +000046compiler/regress-funcaller: PASS, SKIP if $mode == debug
danno@chromium.org72204d52012-10-31 10:02:10 +000047regress/regress-2318: PASS, SKIP if $mode == debug
ager@chromium.org5f0c45f2010-12-17 08:51:21 +000048regress/regress-create-exception: PASS, SKIP if $mode == debug
kasperl@chromium.orga5551262010-12-07 12:49:48 +000049
50##############################################################################
verwaest@chromium.org33e09c82012-10-10 17:07:22 +000051# These use a built-in that's only present in debug mode. They take
ricow@chromium.org64e3a4b2011-12-13 08:07:27 +000052# too long to run in debug mode on ARM and MIPS.
verwaest@chromium.org33e09c82012-10-10 17:07:22 +000053fuzz-natives-part*: PASS, SKIP if ($mode == release || $arch == arm || $arch == android_arm || $arch == mipsel)
ager@chromium.orgc27e4e72008-09-04 13:52:27 +000054
yangguo@chromium.org304cc332012-07-24 07:59:48 +000055big-object-literal: PASS, SKIP if ($arch == arm || $arch == android_arm)
ager@chromium.orgbb29dc92009-03-24 13:25:23 +000056
ager@chromium.org3811b432009-10-28 14:53:37 +000057# Issue 488: this test sometimes times out.
58array-constructor: PASS || TIMEOUT
59
ricow@chromium.org64e3a4b2011-12-13 08:07:27 +000060# Very slow on ARM and MIPS, contains no architecture dependent code.
yangguo@chromium.org304cc332012-07-24 07:59:48 +000061unicode-case-overoptimization: PASS, TIMEOUT if ($arch == arm || $arch == android_arm || $arch == mipsel)
ager@chromium.orgc4c92722009-11-18 14:12:51 +000062
kasperl@chromium.orga5551262010-12-07 12:49:48 +000063##############################################################################
danno@chromium.org72204d52012-10-31 10:02:10 +000064# This test expects to reach a certain recursion depth, which may not work
65# for debug mode.
66json-recursive: PASS, (PASS || FAIL) if $mode == debug
67
68##############################################################################
mvstanton@chromium.orge4ac3ef2012-11-12 14:53:34 +000069# Skip long running test that times out in debug mode.
70regress/regress-crbug-160010: PASS, SKIP if $mode == debug
71
72##############################################################################
yangguo@chromium.org78d1ad42012-02-09 13:53:47 +000073# This test sets the umask on a per-process basis and hence cannot be
74# used in multi-threaded runs.
mstarzinger@chromium.orgc6d9cee2012-07-03 10:03:19 +000075# On android there is no /tmp directory.
yangguo@chromium.org304cc332012-07-24 07:59:48 +000076d8-os: PASS, SKIP if ($isolates || $arch == android_arm || $arch == android_ia32)
77tools/tickprocessor: PASS, SKIP if ($arch == android_arm || $arch == android_ia32)
yangguo@chromium.org78d1ad42012-02-09 13:53:47 +000078
79##############################################################################
yangguo@chromium.org304cc332012-07-24 07:59:48 +000080[ $arch == arm || $arch == android_arm ]
ager@chromium.orgc27e4e72008-09-04 13:52:27 +000081
ager@chromium.org7c537e22008-10-16 08:43:32 +000082# Slow tests which times out in debug mode.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +000083try: PASS, SKIP if $mode == debug
ager@chromium.org7c537e22008-10-16 08:43:32 +000084debug-scripts-request: PASS, SKIP if $mode == debug
christian.plesner.hansen@gmail.com2bc58ef2009-09-22 10:00:30 +000085array-constructor: PASS, SKIP if $mode == debug
rossberg@chromium.org89e18f52012-10-22 13:09:53 +000086regress/regress-1122: PASS, SKIP if ($mode == debug && $arch == android_arm)
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.
kasperl@chromium.orga5551262010-12-07 12:49:48 +000096string-indexof-2: PASS || TIMEOUT
mstarzinger@chromium.orgde886792012-09-11 13:22:37 +000097mirror-object: PASS || TIMEOUT
kasperl@chromium.orga5551262010-12-07 12:49:48 +000098
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
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000114compiler/regress-rep-change: SKIP
115compiler/regress-arguments: SKIP
116compiler/regress-funarguments: SKIP
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000117compiler/regress-3249650: SKIP
118compiler/simple-deopt: SKIP
119regress/regress-490: SKIP
120regress/regress-634: SKIP
121regress/regress-create-exception: SKIP
122regress/regress-3218915: SKIP
123regress/regress-3247124: SKIP
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000124
sgjesse@chromium.org496c03a2011-02-14 12:05:43 +0000125# Requires bigger stack size in the Genesis and if stack size is increased,
126# the test requires too much time to run. However, the problem test covers
127# should be platform-independent.
128regress/regress-1132: SKIP
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +0000129
yangguo@chromium.org5a11aaf2012-06-20 11:29:00 +0000130# Stack manipulations in LiveEdit is not implemented for this arch.
131debug-liveedit-check-stack: SKIP
132debug-liveedit-stack-padding: SKIP
133debug-liveedit-restart-frame: SKIP
ulan@chromium.orgd9e468a2012-06-25 09:47:40 +0000134debug-liveedit-double-call: SKIP
yangguo@chromium.org5a11aaf2012-06-20 11:29:00 +0000135
yangguo@chromium.orgd2899aa2012-06-21 11:16:20 +0000136# Currently always deopt on minus zero
137math-floor-of-div-minus-zero: SKIP
138
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000139##############################################################################
rossberg@chromium.org657d53b2012-07-12 11:06:03 +0000140[ $arch == mipsel ]
ager@chromium.org5c838252010-02-19 08:53:10 +0000141
ricow@chromium.org64e3a4b2011-12-13 08:07:27 +0000142# Slow tests which times out in debug mode.
143try: PASS, SKIP if $mode == debug
144debug-scripts-request: PASS, SKIP if $mode == debug
145array-constructor: PASS, SKIP if $mode == debug
146
147# Times out often in release mode on MIPS.
148compiler/regress-stacktrace-methods: PASS, PASS || TIMEOUT if $mode == release
149array-splice: PASS || TIMEOUT
150
151# Long running test.
152mirror-object: PASS || TIMEOUT
153string-indexof-2: PASS || TIMEOUT
154
155# BUG(3251035): Timeouts in long looping crankshaft optimization
156# tests. Skipping because having them timeout takes too long on the
157# buildbot.
danno@chromium.org40cb8782011-05-25 07:58:50 +0000158compiler/alloc-number: SKIP
159compiler/array-length: SKIP
160compiler/assignment-deopt: SKIP
161compiler/deopt-args: SKIP
162compiler/inline-compare: SKIP
163compiler/inline-global-access: SKIP
164compiler/optimized-function-calls: SKIP
165compiler/pic: SKIP
166compiler/property-calls: SKIP
167compiler/recursive-deopt: SKIP
168compiler/regress-4: SKIP
169compiler/regress-funcaller: SKIP
danno@chromium.org40cb8782011-05-25 07:58:50 +0000170compiler/regress-rep-change: SKIP
171compiler/regress-arguments: SKIP
172compiler/regress-funarguments: SKIP
danno@chromium.org40cb8782011-05-25 07:58:50 +0000173compiler/regress-3249650: SKIP
174compiler/simple-deopt: SKIP
175regress/regress-490: SKIP
176regress/regress-634: SKIP
177regress/regress-create-exception: SKIP
178regress/regress-3218915: SKIP
179regress/regress-3247124: SKIP
180
ricow@chromium.org64e3a4b2011-12-13 08:07:27 +0000181# Requires bigger stack size in the Genesis and if stack size is increased,
182# the test requires too much time to run. However, the problem test covers
183# should be platform-independent.
184regress/regress-1132: SKIP
yangguo@chromium.org5a11aaf2012-06-20 11:29:00 +0000185
186# Stack manipulations in LiveEdit is not implemented for this arch.
187debug-liveedit-check-stack: SKIP
188debug-liveedit-stack-padding: SKIP
189debug-liveedit-restart-frame: SKIP
jkummerow@chromium.org7a6fc812012-06-27 11:12:38 +0000190debug-liveedit-double-call: SKIP
yangguo@chromium.org5a11aaf2012-06-20 11:29:00 +0000191