blob: b526d7f6e34c853e1eb29f6a34147538c9614377 [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
47regress/regress-create-exception: PASS, SKIP if $mode == debug
kasperl@chromium.orga5551262010-12-07 12:49:48 +000048
49##############################################################################
kasperl@chromium.org41044eb2008-10-06 08:24:46 +000050# This one uses a built-in that's only present in debug mode. It takes
ricow@chromium.org64e3a4b2011-12-13 08:07:27 +000051# too long to run in debug mode on ARM and MIPS.
52fuzz-natives: PASS, SKIP if ($mode == release || $arch == arm || $arch == mips)
ager@chromium.orgc27e4e72008-09-04 13:52:27 +000053
ager@chromium.orgbb29dc92009-03-24 13:25:23 +000054big-object-literal: PASS, SKIP if ($arch == arm)
55
ager@chromium.org3811b432009-10-28 14:53:37 +000056# Issue 488: this test sometimes times out.
57array-constructor: PASS || TIMEOUT
58
ricow@chromium.org64e3a4b2011-12-13 08:07:27 +000059# Very slow on ARM and MIPS, contains no architecture dependent code.
60unicode-case-overoptimization: PASS, TIMEOUT if ($arch == arm || $arch == mips)
ager@chromium.orgc4c92722009-11-18 14:12:51 +000061
yangguo@chromium.orgab30bb82012-02-24 14:41:46 +000062# Test Crankshaft compilation time. Expected to take too long in debug mode.
63regress/regress-1969: PASS, SKIP if $mode == debug
64
kasperl@chromium.orga5551262010-12-07 12:49:48 +000065##############################################################################
yangguo@chromium.org78d1ad42012-02-09 13:53:47 +000066[ $isolates ]
67
68# This test sets the umask on a per-process basis and hence cannot be
69# used in multi-threaded runs.
70d8-os: SKIP
71
72##############################################################################
ager@chromium.orgc27e4e72008-09-04 13:52:27 +000073[ $arch == arm ]
74
ager@chromium.org7c537e22008-10-16 08:43:32 +000075# Slow tests which times out in debug mode.
kasperl@chromium.org41044eb2008-10-06 08:24:46 +000076try: PASS, SKIP if $mode == debug
ager@chromium.org7c537e22008-10-16 08:43:32 +000077debug-scripts-request: PASS, SKIP if $mode == debug
christian.plesner.hansen@gmail.com2bc58ef2009-09-22 10:00:30 +000078array-constructor: PASS, SKIP if $mode == debug
kasperl@chromium.org41044eb2008-10-06 08:24:46 +000079
kasperl@chromium.org7be3c992009-03-12 07:19:55 +000080# Flaky test that can hit compilation-time stack overflow in debug mode.
81unicode-test: PASS, (PASS || FAIL) if $mode == debug
82
kasperl@chromium.orge959c182009-07-27 08:59:04 +000083# Times out often in release mode on ARM.
kasperl@chromium.orga5551262010-12-07 12:49:48 +000084compiler/regress-stacktrace-methods: PASS, PASS || TIMEOUT if $mode == release
kasperl@chromium.orge959c182009-07-27 08:59:04 +000085array-splice: PASS || TIMEOUT
ager@chromium.orgc4c92722009-11-18 14:12:51 +000086
kasperl@chromium.orga5551262010-12-07 12:49:48 +000087# Long running test.
88mirror-object: PASS || TIMEOUT
89string-indexof-2: PASS || TIMEOUT
90
91# BUG(3251035): Timeouts in long looping crankshaft optimization
92# tests. Skipping because having them timeout takes too long on the
93# buildbot.
94compiler/alloc-number: SKIP
95compiler/array-length: SKIP
96compiler/assignment-deopt: SKIP
97compiler/deopt-args: SKIP
98compiler/inline-compare: SKIP
99compiler/inline-global-access: SKIP
100compiler/optimized-function-calls: SKIP
101compiler/pic: SKIP
102compiler/property-calls: SKIP
103compiler/recursive-deopt: SKIP
104compiler/regress-4: SKIP
105compiler/regress-funcaller: SKIP
106compiler/regress-gvn: SKIP
107compiler/regress-rep-change: SKIP
108compiler/regress-arguments: SKIP
109compiler/regress-funarguments: SKIP
110compiler/regress-or: SKIP
111compiler/regress-3249650: SKIP
112compiler/simple-deopt: SKIP
113regress/regress-490: SKIP
114regress/regress-634: SKIP
115regress/regress-create-exception: SKIP
116regress/regress-3218915: SKIP
117regress/regress-3247124: SKIP
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000118
sgjesse@chromium.org496c03a2011-02-14 12:05:43 +0000119# Requires bigger stack size in the Genesis and if stack size is increased,
120# the test requires too much time to run. However, the problem test covers
121# should be platform-independent.
122regress/regress-1132: SKIP
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +0000123
yangguo@chromium.org5a11aaf2012-06-20 11:29:00 +0000124# Stack manipulations in LiveEdit is not implemented for this arch.
125debug-liveedit-check-stack: SKIP
126debug-liveedit-stack-padding: SKIP
127debug-liveedit-restart-frame: SKIP
128
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000129##############################################################################
ager@chromium.org5c838252010-02-19 08:53:10 +0000130[ $arch == mips ]
131
ricow@chromium.org64e3a4b2011-12-13 08:07:27 +0000132# Slow tests which times out in debug mode.
133try: PASS, SKIP if $mode == debug
134debug-scripts-request: PASS, SKIP if $mode == debug
135array-constructor: PASS, SKIP if $mode == debug
136
137# Times out often in release mode on MIPS.
138compiler/regress-stacktrace-methods: PASS, PASS || TIMEOUT if $mode == release
139array-splice: PASS || TIMEOUT
140
141# Long running test.
142mirror-object: PASS || TIMEOUT
143string-indexof-2: PASS || TIMEOUT
144
145# BUG(3251035): Timeouts in long looping crankshaft optimization
146# tests. Skipping because having them timeout takes too long on the
147# buildbot.
danno@chromium.org40cb8782011-05-25 07:58:50 +0000148compiler/alloc-number: SKIP
149compiler/array-length: SKIP
150compiler/assignment-deopt: SKIP
151compiler/deopt-args: SKIP
152compiler/inline-compare: SKIP
153compiler/inline-global-access: SKIP
154compiler/optimized-function-calls: SKIP
155compiler/pic: SKIP
156compiler/property-calls: SKIP
157compiler/recursive-deopt: SKIP
158compiler/regress-4: SKIP
159compiler/regress-funcaller: SKIP
160compiler/regress-gvn: SKIP
161compiler/regress-rep-change: SKIP
162compiler/regress-arguments: SKIP
163compiler/regress-funarguments: SKIP
164compiler/regress-or: SKIP
165compiler/regress-3249650: SKIP
166compiler/simple-deopt: SKIP
167regress/regress-490: SKIP
168regress/regress-634: SKIP
169regress/regress-create-exception: SKIP
170regress/regress-3218915: SKIP
171regress/regress-3247124: SKIP
172
ricow@chromium.org64e3a4b2011-12-13 08:07:27 +0000173# Requires bigger stack size in the Genesis and if stack size is increased,
174# the test requires too much time to run. However, the problem test covers
175# should be platform-independent.
176regress/regress-1132: SKIP
yangguo@chromium.org5a11aaf2012-06-20 11:29:00 +0000177
178# Stack manipulations in LiveEdit is not implemented for this arch.
179debug-liveedit-check-stack: SKIP
180debug-liveedit-stack-padding: SKIP
181debug-liveedit-restart-frame: SKIP
182