blob: bae09b4e38a9c26260b587909e6701edfc92b271 [file] [log] [blame]
Ben Murdoch3fb3ca82011-12-02 17:19:32 +00001# Copyright 2011 the V8 project authors. All rights reserved.
Steve Blocka7e24c12009-10-30 11:49:00 +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.
31bugs: FAIL
32
Ben Murdoch3fb3ca82011-12-02 17:19:32 +000033##############################################################################
34# Fails.
35regress/regress-1119: FAIL
Ben Murdochb0fe1622011-05-05 13:52:32 +010036
Ben Murdoch589d6972011-11-30 16:04:58 +000037#############################################################################
38# Fails due to r10102 which reverts precise stepping on the 3.6 branch.
39debug-step-2: FAIL
40
Ben Murdochb0fe1622011-05-05 13:52:32 +010041##############################################################################
42# Too slow in debug mode with --stress-opt
43compiler/regress-stacktrace-methods: PASS, SKIP if $mode == debug
44compiler/regress-funcaller: PASS, SKIP if $mode == debug
45regress/regress-create-exception: PASS, SKIP if $mode == debug
46
47##############################################################################
Steve Blocka7e24c12009-10-30 11:49:00 +000048# This one uses a built-in that's only present in debug mode. It takes
49# too long to run in debug mode on ARM.
50fuzz-natives: PASS, SKIP if ($mode == release || $arch == arm)
51
52big-object-literal: PASS, SKIP if ($arch == arm)
53
Steve Blockd0582a62009-12-15 09:54:21 +000054# Issue 488: this test sometimes times out.
55array-constructor: PASS || TIMEOUT
56
57# Very slow on ARM, contains no architecture dependent code.
58unicode-case-overoptimization: PASS, TIMEOUT if ($arch == arm)
59
Leon Clarked91b9f72010-01-27 17:25:45 +000060# Skip long running test in debug and allow it to timeout in release mode.
61regress/regress-524: (PASS || TIMEOUT), SKIP if $mode == debug
Steve Blockd0582a62009-12-15 09:54:21 +000062
Teng-Hui Zhu3e5fa292010-11-09 16:16:48 -080063# Stack manipulations in LiveEdit are buggy - see bug 915
64debug-liveedit-check-stack: SKIP
65debug-liveedit-patch-positions-replace: SKIP
66
Ben Murdochb0fe1622011-05-05 13:52:32 +010067
68##############################################################################
Steve Blocka7e24c12009-10-30 11:49:00 +000069[ $arch == arm ]
70
71# Slow tests which times out in debug mode.
72try: PASS, SKIP if $mode == debug
73debug-scripts-request: PASS, SKIP if $mode == debug
74array-constructor: PASS, SKIP if $mode == debug
75
76# Flaky test that can hit compilation-time stack overflow in debug mode.
77unicode-test: PASS, (PASS || FAIL) if $mode == debug
78
Steve Blocka7e24c12009-10-30 11:49:00 +000079# Times out often in release mode on ARM.
Ben Murdochb0fe1622011-05-05 13:52:32 +010080compiler/regress-stacktrace-methods: PASS, PASS || TIMEOUT if $mode == release
Steve Blocka7e24c12009-10-30 11:49:00 +000081array-splice: PASS || TIMEOUT
Steve Blockd0582a62009-12-15 09:54:21 +000082
Ben Murdochb0fe1622011-05-05 13:52:32 +010083# Long running test.
84mirror-object: PASS || TIMEOUT
85string-indexof-2: PASS || TIMEOUT
86
87# BUG(3251035): Timeouts in long looping crankshaft optimization
88# tests. Skipping because having them timeout takes too long on the
89# buildbot.
90compiler/alloc-number: SKIP
91compiler/array-length: SKIP
92compiler/assignment-deopt: SKIP
93compiler/deopt-args: SKIP
94compiler/inline-compare: SKIP
95compiler/inline-global-access: SKIP
96compiler/optimized-function-calls: SKIP
97compiler/pic: SKIP
98compiler/property-calls: SKIP
99compiler/recursive-deopt: SKIP
100compiler/regress-4: SKIP
101compiler/regress-funcaller: SKIP
102compiler/regress-gvn: SKIP
103compiler/regress-rep-change: SKIP
104compiler/regress-arguments: SKIP
105compiler/regress-funarguments: SKIP
106compiler/regress-or: SKIP
107compiler/regress-3249650: SKIP
108compiler/simple-deopt: SKIP
109regress/regress-490: SKIP
110regress/regress-634: SKIP
111regress/regress-create-exception: SKIP
112regress/regress-3218915: SKIP
113regress/regress-3247124: SKIP
Steve Blockd0582a62009-12-15 09:54:21 +0000114
Steve Block1e0659c2011-05-24 12:43:12 +0100115# Requires bigger stack size in the Genesis and if stack size is increased,
116# the test requires too much time to run. However, the problem test covers
117# should be platform-independent.
118regress/regress-1132: SKIP
Kristian Monsen25f61362010-05-21 11:50:48 +0100119
Ben Murdochb0fe1622011-05-05 13:52:32 +0100120##############################################################################
Andrei Popescu31002712010-02-23 13:46:05 +0000121[ $arch == mips ]
Ben Murdoch589d6972011-11-30 16:04:58 +0000122# Run those tests, but expect them to time out.
123array-sort: PASS || TIMEOUT
124mirror-object: PASS || TIMEOUT
Andrei Popescu31002712010-02-23 13:46:05 +0000125
Ben Murdoch257744e2011-11-30 15:57:28 +0000126# Skip long-running tests.
127compiler/alloc-number: SKIP
128compiler/array-length: SKIP
129compiler/assignment-deopt: SKIP
130compiler/deopt-args: SKIP
131compiler/inline-compare: SKIP
132compiler/inline-global-access: SKIP
133compiler/optimized-function-calls: SKIP
134compiler/pic: SKIP
135compiler/property-calls: SKIP
136compiler/recursive-deopt: SKIP
137compiler/regress-4: SKIP
138compiler/regress-funcaller: SKIP
139compiler/regress-gvn: SKIP
140compiler/regress-rep-change: SKIP
141compiler/regress-arguments: SKIP
142compiler/regress-funarguments: SKIP
143compiler/regress-or: SKIP
144compiler/regress-3249650: SKIP
145compiler/simple-deopt: SKIP
146regress/regress-490: SKIP
147regress/regress-634: SKIP
148regress/regress-create-exception: SKIP
149regress/regress-3218915: SKIP
150regress/regress-3247124: SKIP
Ben Murdoch589d6972011-11-30 16:04:58 +0000151regress/regress-1132: SKIP
152regress/regress-1257: SKIP
153regress/regress-91008: SKIP
Ben Murdoch257744e2011-11-30 15:57:28 +0000154
Ben Murdoch589d6972011-11-30 16:04:58 +0000155##############################################################################
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000156[ $isolates ]
157# d8-os writes temporary files that might interfer with each other when running
158# in multible threads. Skip this if running with isolates testing.
159d8-os: SKIP