blob: 24b3fda3e01524f23452600f4eebd143eecc3927 [file] [log] [blame]
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +00001# Copyright 2008 Google Inc. All rights reserved.
2# 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
ager@chromium.orgc27e4e72008-09-04 13:52:27 +000028# This file is up to date with respect to Mozilla's CVS repository as of
29# 2008-09-02. If new tests are added to Mozilla's CVS it may need to be
30# updated.
31
32# To get the mozilla tests:
33# cd /path/to/checkout/test/mozilla
34# rm -rf data
35# cvs -d :pserver:anonymous@cvs-mirror.mozilla.org:/cvsroot co -D 2008-09-02 mozilla/js/tests
36# mv mozilla/js/tests data
37# rm -rf mozilla
38
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +000039# --------------------------------------------------------------------
40# If you add a test case to this file, please try to provide
41# an explanation of why the test fails; this may ease future
42# debugging.
43# --------------------------------------------------------------------
44
45prefix mozilla
46def FAIL_OK = FAIL, OKAY
47
48
49##################### SKIPPED TESTS #####################
50
51# This test checks that we behave properly in an out-of-memory
52# situation. The test fails in V8 with an exception and takes a long
53# time to do so.
54js1_5/Regress/regress-271716-n: SKIP
55
56
57##################### SLOW TESTS #####################
58
59# This takes a long time to run (~100 seconds). It should only be run
60# by the really patient.
61js1_5/GC/regress-324278: SLOW
62
63# This takes a long time to run because our indexOf operation is
64# pretty slow - it causes a lot of GCs; see issue
65# #926379. We could consider marking this SKIP because it takes a
66# while to run to completion.
67js1_5/GC/regress-338653: SLOW
68
69# This test is designed to run until it runs out of memory. This takes
70# a very long time because it builds strings character by character
71# and compiles a lot of regular expressions. We could consider marking
72# this SKIP because it takes a while to run to completion.
73js1_5/GC/regress-346794: SLOW
74
75# Runs out of memory while trying to build huge string of 'x'
76# characters. This takes a long time to run (~32 seconds).
77js1_5/GC/regress-348532: SLOW
78
79
80##################### FLAKY TESTS #####################
81
82# These tests time out in debug mode but pass in product mode
v8.team.kasperl727e9952008-09-02 14:56:44 +000083js1_5/Regress/regress-280769-3: PASS || FAIL if $mode == debug
84js1_5/Regress/regress-203278-1: PASS || FAIL if $mode == debug
85js1_5/GC/regress-203278-2: PASS || FAIL if $mode == debug
86js1_5/Regress/regress-244470: PASS || FAIL if $mode == debug
87ecma_3/RegExp/regress-209067: PASS || FAIL if $mode == debug
88js1_5/GC/regress-278725: PASS || FAIL if $mode == debug
89js1_5/Regress/regress-360969-03: PASS || FAIL if $mode == debug
90js1_5/Regress/regress-360969-04: PASS || FAIL if $mode == debug
91js1_5/Regress/regress-360969-05: PASS || FAIL if $mode == debug
92js1_5/Regress/regress-360969-06: PASS || FAIL if $mode == debug
93js1_5/extensions/regress-365527: PASS || FAIL if $mode == debug
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +000094# http://b/issue?id=1206983
v8.team.kasperl727e9952008-09-02 14:56:44 +000095js1_5/Regress/regress-367561-03: PASS || FAIL if $mode == debug
96ecma/Date/15.9.5.10-2: PASS || FAIL if $mode == debug
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +000097
98# These tests create two Date objects just after each other and
99# expects them to match. Sometimes this happens on the border
100# between one second and the next.
101ecma/Date/15.9.2.1: PASS || FAIL
102ecma/Date/15.9.2.2-1: PASS || FAIL
103ecma/Date/15.9.2.2-2: PASS || FAIL
104ecma/Date/15.9.2.2-3: PASS || FAIL
105ecma/Date/15.9.2.2-4: PASS || FAIL
106ecma/Date/15.9.2.2-5: PASS || FAIL
107ecma/Date/15.9.2.2-6: PASS || FAIL
108
109# 1026139: These date tests fail on arm
110ecma/Date/15.9.5.29-1: PASS || ($ARM && FAIL)
111ecma/Date/15.9.5.34-1: PASS || ($ARM && FAIL)
112ecma/Date/15.9.5.28-1: PASS || ($ARM && FAIL)
113
114# 1050186: Arm vm is broken; probably unrelated to dates
115ecma/Array/15.4.4.5-3: PASS || ($ARM && FAIL)
116ecma/Date/15.9.5.22-2: PASS || ($ARM && FAIL)
117
118# Severely brain-damaged test. Access to local variables must not
119# be more than 2.5 times faster than access to global variables? WTF?
120js1_5/Regress/regress-169559: PASS || FAIL
121
122
123# Test that rely on specific timezone (not working in Denmark).
124js1_5/Regress/regress-58116: PASS || FAIL
125
126
127# Flaky random() test. Tests the distribution of calls to Math.random().
128js1_5/Regress/regress-211590: PASS || FAIL
129
130
131# Flaky tests; expect BigO-order computations to yield 1, but the code
132# cannot handle outliers. See bug #925864.
133ecma_3/RegExp/regress-311414: PASS || FAIL
134ecma_3/RegExp/regress-289669: PASS || FAIL
135js1_5/String/regress-314890: PASS || FAIL
136js1_5/String/regress-56940-01: PASS || FAIL
137js1_5/String/regress-56940-02: PASS || FAIL
138js1_5/String/regress-157334-01: PASS || FAIL
139js1_5/String/regress-322772: PASS || FAIL
140js1_5/Array/regress-99120-01: PASS || FAIL
141js1_5/Array/regress-99120-02: PASS || FAIL
142js1_5/Regress/regress-347306-01: PASS || FAIL
143js1_5/Regress/regress-416628: PASS || FAIL
144
145
146# The following two tests assume that daylight savings time starts first Sunday
147# in April. This is not true when executing the tests outside California!
148# In Denmark the adjustment starts one week earlier!.
149# Tests based on shell that use dates in this gap are flaky.
150ecma/Date/15.9.5.10-1: PASS || FAIL
151ecma/Date/15.9.5.12-1: PASS || FAIL
152ecma/Date/15.9.5.14: PASS || FAIL
153ecma/Date/15.9.5.34-1: PASS || FAIL
154
155
156# These tests sometimes pass (in particular on Windows). They build up
157# a lot of stuff on the stack, which normally causes a stack overflow,
158# but sometimes it makes it through?
159js1_5/Regress/regress-290575: PASS || FAIL
160js1_5/Regress/regress-98901: PASS || FAIL
161
162
163# Tests that sorting arrays of ints is less than 3 times as fast
164# as sorting arrays of strings.
165js1_5/extensions/regress-371636: PASS || FAIL
166
167
168# Test depends on GC timings. Inherently flaky.
169js1_5/GC/regress-383269-01: PASS || FAIL
170
171
172##################### INCOMPATIBLE TESTS #####################
173
174# This section is for tests that fail in both V8 and KJS. Thus they
175# have been determined to be incompatible between Mozilla and V8/KJS.
176
177# Fail because of toLowerCase and toUpperCase conversion.
178ecma/String/15.5.4.11-2: FAIL_OK
179ecma/String/15.5.4.11-5: FAIL_OK
180ecma/String/15.5.4.12-1: FAIL_OK
181ecma/String/15.5.4.12-4: FAIL_OK
182
183# This test uses an older version of the unicode standard that fails
184# us because we correctly convert the armenian small ligature ech-yiwn
185# to the two upper-case characters ECH and YIWN, whereas the older
186# unicode version converts it to itself.
187ecma/String/15.5.4.12-5: FAIL_OK
188
189# Creates a linked list of arrays until we run out of memory.
190js1_5/Regress/regress-312588: FAIL_OK
191
192
193# Runs out of memory because it compiles huge functions.
194js1_5/Function/regress-338001: FAIL_OK
195js1_5/Function/regress-338121-01: FAIL_OK
196js1_5/Function/regress-338121-02: FAIL_OK
197js1_5/Function/regress-338121-03: FAIL_OK
198
199
200# Length of objects whose prototype chain includes a function
201ecma_3/Function/regress-313570: FAIL_OK
202
203
204#:=== RegExp:===
205# To be compatible with KJS we silently ignore flags that do not make
206# sense. This test expects us to throw exceptions.
207ecma_3/RegExp/regress-57631: FAIL_OK
208
209# PCRE doesn't allow subpattern nesting deeper than 200, this tests
210# depth 500. KJS detects the case, and return null from the match,
211# and passes this test (the test doesn't check for a correct return
212# value).
213ecma_3/RegExp/regress-119909: FAIL_OK
214
215
216# Difference in the way capturing subpatterns work. In JS, when the
217# 'minimum repeat count' is reached, the empty string must not match.
218# In this case, we are similar but not identical to KJS. Hard to
219# support the JS behavior with PCRE, so maybe emulate KJS?
220#
221# Note: We do not support toSource currently so we cannot run this
222# test. We should make an isolated test case for the regexp issue.
223ecma_3/RegExp/regress-209919: FAIL_OK
224
225
226# PCRE's match limit is reached. SpiderMonkey hangs on the first one,
227# KJS returns true somehow. Maybe they up the match limit? There is
228# an open V8 bug 676063 about this.
229ecma_3/RegExp/regress-330684: FAIL_OK
230
231
232# We do not detect overflow in bounds for back references and {}
233# quantifiers. Might fix by parsing numbers differently?
234js1_5/Regress/regress-230216-2: FAIL_OK
235
236
237# According to ECMA-262, \b is a 'word' boundary, where words are only
238# ASCII characters. PCRE supports non-ASCII word characters.
239js1_5/Regress/regress-247179: FAIL_OK
240
241
242# Regexp too long for PCRE.
243js1_5/Regress/regress-280769: FAIL_OK
244js1_5/Regress/regress-280769-1: FAIL_OK
245js1_5/Regress/regress-280769-2: FAIL_OK
246js1_5/Regress/regress-280769-4: FAIL_OK
247js1_5/Regress/regress-280769-5: FAIL_OK
248
249
250# We do not support static RegExp.multiline - should we?.
251js1_2/regexp/RegExp_multiline: FAIL_OK
252js1_2/regexp/RegExp_multiline_as_array: FAIL_OK
253js1_2/regexp/beginLine: FAIL_OK
254js1_2/regexp/endLine: FAIL_OK
255
256
257# Date trouble?
258js1_5/Date/regress-301738-02: FAIL_OK
259
260
261# This test fails for all browsers on in the CET timezone.
262ecma/Date/15.9.5.35-1: PASS || FAIL_OK
263
264
265# Spidermonkey allows stuff in parenthesis directly after the minutes
266# in a date. KJS does not, so we don't either.
267js1_5/Date/regress-309925-02: FAIL_OK
268
269
270# Print string after deleting array element?
271js1_5/Expressions/regress-96526-delelem: FAIL_OK
272
273
274# Stack overflows should be InternalError: too much recursion?
275js1_5/Regress/regress-234389: FAIL_OK
276
277
278# This may very well be a bogus test. I'm not sure yet.
279js1_5/Regress/regress-320119: FAIL_OK
280
281
282# We do not support explicit global evals through <global>.eval(...).
283js1_5/Regress/regress-68498-003: FAIL_OK
284
285
286# No support for toSource().
287js1_5/Regress/regress-248444: FAIL_OK
288js1_5/Regress/regress-313967-01: FAIL_OK
289js1_5/Regress/regress-313967-02: FAIL_OK
290
291# This fails because we don't have stack space for Function.prototype.apply
292# with very large numbers of arguments. The test uses 2^24 arguments.
293js1_5/Array/regress-350256-03: FAIL_OK
294
295
296# Extra arguments not handled properly in String.prototype.match
297js1_5/Regress/regress-179524: FAIL_OK
298
299
300# Uncategorized failures. Please help categorize (or fix) these failures.
301js1_5/Regress/regress-172699: FAIL_OK
302
303
304# Calls regexp objects with function call syntax; non-ECMA behavior.
305js1_2/Objects/toString-001: FAIL_OK
306
307
308# Assumes that the prototype of a function is enumerable. Non-ECMA,
309# see section 15.3.3.1, page 86.
310ecma/GlobalObject/15.1.2.2-1: FAIL_OK
311ecma/GlobalObject/15.1.2.3-1: FAIL_OK
312ecma/GlobalObject/15.1.2.4: FAIL_OK
313ecma/GlobalObject/15.1.2.5-1: FAIL_OK
314ecma/GlobalObject/15.1.2.6: FAIL_OK
315ecma/GlobalObject/15.1.2.7: FAIL_OK
316
317
318# Tests that rely on specific details of function decompilation or
319# print strings for errors. Non-ECMA behavior.
320js1_2/function/tostring-2: FAIL_OK
321js1_5/Exceptions/regress-332472: FAIL_OK
322js1_5/Regress/regress-173067: FAIL_OK
323js1_5/Regress/regress-355556: FAIL_OK
324js1_5/Regress/regress-328664: FAIL_OK
325js1_5/Regress/regress-252892: FAIL_OK
326js1_5/Regress/regress-352208: FAIL_OK
327ecma_3/Array/15.4.5.1-01: FAIL_OK
328ecma_3/Array/regress-387501: FAIL_OK
329ecma_3/LexicalConventions/7.9.1: FAIL_OK
330ecma_3/RegExp/regress-375711: FAIL_OK
331ecma_3/Unicode/regress-352044-01: FAIL_OK
332ecma_3/extensions/regress-274152: FAIL_OK
333js1_5/Regress/regress-372364: FAIL_OK
334js1_5/Regress/regress-420919: FAIL_OK
335js1_5/Regress/regress-422348: FAIL_OK
ager@chromium.orgc27e4e72008-09-04 13:52:27 +0000336js1_5/Regress/regress-410852: FAIL_OK
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000337ecma_3/RegExp/regress-375715-04: FAIL_OK
338
339
ager@chromium.orgc27e4e72008-09-04 13:52:27 +0000340# Tests that use uneval. Non-ECMA.
341js1_5/GC/regress-418128: FAIL_OK
342
343
344# Tests that use __count__. Non-ECMA.
345js1_5/extensions/regress-434837-01: FAIL_OK
346
347
348# Tests that use the watch method. Non-ECMA.
349js1_5/extensions/regress-435345-01: FAIL_OK
350
351
352# The spec specifies reverse evaluation order for < and >=.
353# See section 11.8.2 and 11.8.5.
354# We implement the spec here but the test tests the more straigtforward order.
355ecma_3/Operators/order-01: FAIL_OK
356
357
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000358# Uses Mozilla-specific QName, XML, XMLList and Iterator.
359js1_5/Regress/regress-407323: FAIL_OK
360js1_5/Regress/regress-407957: FAIL_OK
361
362
363# Relies on JavaScript 1.2 / 1.3 deprecated features.
364js1_2/function/String: FAIL_OK
365js1_2/operator/equality: FAIL_OK
366js1_2/version120/boolean-001: FAIL_OK
367js1_2/String/concat: FAIL_OK
368js1_2/function/Function_object: FAIL_OK
369js1_2/function/tostring-1: FAIL_OK
370js1_2/version120/regress-99663: FAIL_OK
371js1_2/regexp/RegExp_lastIndex: FAIL_OK
372js1_2/regexp/string_split: FAIL_OK
373
374
375# We do not check for bad surrogate pairs when quoting strings.
376js1_5/Regress/regress-315974: FAIL_OK
377
378
379# Use unsupported "watch".
380js1_5/Regress/regress-213482: FAIL_OK
381js1_5/Regress/regress-240577: FAIL_OK
382js1_5/Regress/regress-355344: FAIL_OK
383js1_5/Object/regress-362872-01: FAIL_OK
384js1_5/Object/regress-362872-02: FAIL_OK
385js1_5/Regress/regress-361467: FAIL_OK
386js1_5/Regress/regress-385393-06: FAIL_OK
387
388
389# Use special Mozilla getter/setter syntax
390js1_5/Regress/regress-354924: FAIL_OK
391js1_5/Regress/regress-355341: FAIL_OK
392js1_5/GC/regress-316885-01: FAIL_OK
393js1_5/GetSet/getset-002: FAIL_OK
394js1_5/GetSet/regress-353264: FAIL_OK
395js1_5/Regress/regress-361617: FAIL_OK
396js1_5/Regress/regress-362583: FAIL_OK
ager@chromium.orgc27e4e72008-09-04 13:52:27 +0000397js1_5/extensions/regress-356378: FAIL_OK
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000398
399
400# 'native' *is* a keyword in V8.
401js1_5/Regress/regress-240317: FAIL_OK
402
403
404# Requires Mozilla-specific strict mode or options() function.
405ecma_3/Object/8.6.1-01: FAIL_OK
406js1_5/Exceptions/regress-315147: FAIL_OK
407js1_5/Regress/regress-106244: FAIL_OK
408js1_5/Regress/regress-317533: FAIL_OK
409js1_5/Regress/regress-323314-1: FAIL_OK
410js1_5/Regress/regress-352197: FAIL_OK
411js1_5/Regress/regress-115436: FAIL_OK
412js1_5/Regress/regress-214761: FAIL_OK
413js1_5/Regress/regress-253150: FAIL_OK
414js1_5/Regress/regress-306727: FAIL_OK
415js1_5/Regress/regress-308566: FAIL_OK
416js1_5/Regress/regress-312260: FAIL_OK
417js1_5/Regress/regress-322430: FAIL_OK
418js1_5/Regress/regress-383674: FAIL_OK
419
420
421# Equivalent to assert(false).
422ecma_2/RegExp/exec-001: FAIL_OK
423ecma_2/String/replace-001: FAIL_OK
424
425
426# We do not strip unicode format control characters. This is really
427# required for working with non-latin character sets. We match KJS
428# and IE here. Firefox matches the spec (section 7.1).
429ecma_3/Unicode/uc-001: FAIL_OK
430
431
432# A non-breaking space doesn't match \s in a regular expression. This behaviour
433# matches KJS. All the VMs have different behaviours in which characters match
434# \s so we do the same as KJS until they change.
435ecma_3/Unicode/uc-002: FAIL_OK
436
437
438# String.prototype.split on empty strings always returns an array
439# with one element (as specified in ECMA-262).
440js1_2/Array/array_split_1: FAIL_OK
441
442
443# The concat() method is defined in Array.prototype; not Array.
444js1_5/Array/regress-313153: FAIL_OK
445
446
447# Properties stack, fileName, and lineNumber of Error instances are
448# not supported. Mozilla specific extension.
449js1_5/Exceptions/errstack-001: FAIL_OK
450js1_5/Exceptions/regress-257751: FAIL_OK
451js1_5/Regress/regress-119719: FAIL_OK
452js1_5/Regress/regress-139316: FAIL_OK
453js1_5/Regress/regress-167328: FAIL_OK
454js1_5/Regress/regress-243869: FAIL_OK
455
456
457# Unsupported import/export and <xml> literals. Mozilla extensions.
458js1_5/Regress/regress-249211: FAIL_OK
459js1_5/Regress/regress-309242: FAIL_OK
460js1_5/Regress/regress-350692: FAIL_OK
461
462
463# The length of Error functions is 1 not 3.
464js1_5/Exceptions/regress-123002: FAIL_OK
465
466
467# Reserved keywords as function names, etc is not supported.
468js1_5/LexicalConventions/regress-343675: FAIL_OK
469
470
471# Unsupported list comprehensions: [ ... for ... ] and for each.
472js1_5/Regress/regress-352009: FAIL_OK
473js1_5/Regress/regress-349648: FAIL_OK
474
475
476# Expects top level arguments (passed on command line?) to be
477# the empty string?
478js1_5/Regress/regress-336100: FAIL_OK
479
480
481# Regular expression test failures due to PCRE. We match KJS (ie, perl)
482# behavior and not the ECMA spec.
483ecma_3/RegExp/15.10.2-1: FAIL_OK
484ecma_3/RegExp/perlstress-001: FAIL_OK
485ecma_3/RegExp/regress-334158: FAIL_OK
486
487
488# This test requires a failure if we try to compile a function with more
489# than 65536 arguments. This seems to be a Mozilla restriction.
490js1_5/Regress/regress-290575: FAIL_OK
491
492
493# Fails because of the way function declarations are
494# handled in V8/KJS. V8 follows IE behavior and introduce
495# all nested function declarations when entering the
496# surrounding function, whereas Spidermonkey declares
497# them dynamically when the statement is executed.
498ecma_3/Function/scope-001: FAIL_OK
499ecma_3/FunExpr/fe-001: FAIL_OK
500js1_5/Scope/regress-184107: FAIL_OK
501
502
503# Function is deletable in V8 and KJS.
504js1_5/Regress/regress-352604: FAIL_OK
505
506
507# Cannot call strings as functions. Expects not to crash.
508js1_5/Regress/regress-417893: FAIL_OK
509
510
511
512##################### FAILING TESTS #####################
513
514# This section is for tests that fail in V8 and pass in KJS.
515# Tests that fail in both V8 and KJS belong in the FAIL_OK
516# category.
517
518# This fails because we don't handle Function.prototype.apply with very large
519# numbers of arguments (depending on max stack size). 350256-02 needs more than
520# 4Mbytes of stack space.
521js1_5/Array/regress-350256-02: FAIL
522
523
524# This fails because 'delete arguments[i]' does not disconnect the
525# argument from the arguments array. See issue #900066.
526ecma_3/Function/regress-137181: FAIL
527
528
529# Calls regexp objects with function call syntax; non-ECMA behavior.
530ecma_2/RegExp/regress-001: FAIL
531js1_2/regexp/regress-6359: FAIL
532js1_2/regexp/regress-9141: FAIL
533js1_5/Regress/regress-224956: FAIL
534js1_5/Regress/regress-325925: FAIL
535js1_2/regexp/simple_form: FAIL
536
537
538# Tests that rely on specific details of function decompilation or
539# print strings for errors. Non-ECMA behavior.
540js1_4/Regress/function-003: FAIL
541
542
543# Relies on JavaScript 1.2 / 1.3 deprecated features.
544js1_2/function/regexparg-1: FAIL
545
546
547# 'export' and 'import' are not keywords in V8.
548ecma_2/Exceptions/lexical-010: FAIL
549ecma_2/Exceptions/lexical-022: FAIL
550
551
552# Requires Mozilla-specific strict mode.
553ecma_2/Exceptions/lexical-011: FAIL
554ecma_2/Exceptions/lexical-014: FAIL
555ecma_2/Exceptions/lexical-016: FAIL
556ecma_2/Exceptions/lexical-021: FAIL
557ecma_2/LexicalConventions/keywords-001: FAIL
558js1_5/Regress/regress-306633: FAIL
559
560
561# This test seems designed to fail (it produces a 700Mbyte string).
562# We fail on out of memory. The important thing is not to crash.
563js1_5/Regress/regress-303213: FAIL
564
565
566# Bug 1193440: Ignore Unicode BOM characters when scanning.
567ecma_3/extensions/regress-368516: FAIL
568
569# Bug 1202592:New ecma_3/String/15.5.4.11 is failing.
570ecma_3/String/15.5.4.11: FAIL
571
572# Bug 1202597: New js1_5/Expressions/regress-394673 is failing.
573# Marked as: Will not fix. V8 throws an acceptable RangeError.
574js1_5/Expressions/regress-394673: FAIL
575
576# Bug 1202598: New mozilla test js1_5/Regress/regress-383682 fails.
577js1_5/Regress/regress-383682: FAIL
578
579
580##################### MOZILLA EXTENSION TESTS #####################
581
582ecma/extensions/15.1.2.1-1: FAIL_OK
583ecma_3/extensions/regress-385393-03: FAIL_OK
584ecma_3/extensions/7.9.1: FAIL_OK
585js1_5/extensions/catchguard-001: FAIL_OK
586js1_5/extensions/catchguard-002: FAIL_OK
587js1_5/extensions/catchguard-003: FAIL_OK
588js1_5/extensions/getset-001: FAIL_OK
589js1_5/extensions/getset-003: FAIL_OK
590js1_5/extensions/no-such-method: FAIL_OK
591js1_5/extensions/regress-104077: FAIL_OK
592js1_5/extensions/regress-226078: FAIL_OK
593js1_5/extensions/regress-303277: FAIL_OK
594js1_5/extensions/regress-304897: FAIL_OK
595js1_5/extensions/regress-306738: FAIL_OK
596js1_5/extensions/regress-311161: FAIL_OK
597js1_5/extensions/regress-311583: FAIL_OK
598js1_5/extensions/regress-311792-01: FAIL_OK
599js1_5/extensions/regress-312278: FAIL_OK
600js1_5/extensions/regress-313630: FAIL_OK
601js1_5/extensions/regress-313763: FAIL_OK
602js1_5/extensions/regress-313803: FAIL_OK
603js1_5/extensions/regress-314874: FAIL_OK
604js1_5/extensions/regress-322957: FAIL_OK
605js1_5/extensions/regress-328556: FAIL_OK
606js1_5/extensions/regress-330569: FAIL_OK
607js1_5/extensions/regress-333541: FAIL_OK
608js1_5/extensions/regress-335700: FAIL_OK
609js1_5/extensions/regress-336409-1: FAIL_OK
610js1_5/extensions/regress-336409-2: FAIL_OK
611js1_5/extensions/regress-336410-1: FAIL_OK
612js1_5/extensions/regress-336410-2: FAIL_OK
613js1_5/extensions/regress-341956-01: FAIL_OK
614js1_5/extensions/regress-341956-02: FAIL_OK
615js1_5/extensions/regress-341956-03: FAIL_OK
616js1_5/extensions/regress-342960: FAIL_OK
617js1_5/extensions/regress-345967: FAIL_OK
618js1_5/extensions/regress-346494-01: FAIL_OK
619js1_5/extensions/regress-346494: FAIL_OK
620js1_5/extensions/regress-347306-02: FAIL_OK
621js1_5/extensions/regress-348986: FAIL_OK
622js1_5/extensions/regress-349616: FAIL_OK
623js1_5/extensions/regress-350312-02: FAIL_OK
624js1_5/extensions/regress-350312-03: FAIL_OK
625js1_5/extensions/regress-350531: FAIL_OK
626js1_5/extensions/regress-351102-01: FAIL_OK
627js1_5/extensions/regress-351102-02: FAIL_OK
628js1_5/extensions/regress-351102-06: FAIL_OK
629js1_5/extensions/regress-351448: FAIL_OK
630js1_5/extensions/regress-351973: FAIL_OK
631js1_5/extensions/regress-352060: FAIL_OK
632js1_5/extensions/regress-352094: FAIL_OK
633js1_5/extensions/regress-352261: FAIL_OK
634js1_5/extensions/regress-352281: FAIL_OK
635js1_5/extensions/regress-352372: FAIL_OK
636js1_5/extensions/regress-352455: FAIL_OK
637js1_5/extensions/regress-352604: FAIL_OK
638js1_5/extensions/regress-353214: FAIL_OK
639js1_5/extensions/regress-355339: FAIL_OK
640js1_5/extensions/regress-355497: FAIL_OK
641js1_5/extensions/regress-355622: FAIL_OK
642js1_5/extensions/regress-355736: FAIL_OK
643js1_5/extensions/regress-356085: FAIL_OK
644js1_5/extensions/regress-356106: FAIL_OK
645js1_5/extensions/regress-358594-01: FAIL_OK
646js1_5/extensions/regress-358594-02: FAIL_OK
647js1_5/extensions/regress-358594-03: FAIL_OK
648js1_5/extensions/regress-358594-04: FAIL_OK
649js1_5/extensions/regress-358594-05: FAIL_OK
650js1_5/extensions/regress-358594-06: FAIL_OK
651js1_5/extensions/regress-361346: FAIL_OK
652js1_5/extensions/regress-361360: FAIL_OK
653js1_5/extensions/regress-361558: FAIL_OK
654js1_5/extensions/regress-361571: FAIL_OK
655js1_5/extensions/regress-361856: FAIL_OK
656js1_5/extensions/regress-361964: FAIL_OK
657js1_5/extensions/regress-363988: FAIL_OK
658js1_5/extensions/regress-365869: FAIL_OK
659js1_5/extensions/regress-367630: FAIL_OK
660js1_5/extensions/regress-367923: FAIL_OK
661js1_5/extensions/regress-368859: FAIL_OK
662js1_5/extensions/regress-374589: FAIL_OK
663js1_5/extensions/regress-375801: FAIL_OK
664js1_5/extensions/regress-376052: FAIL_OK
665js1_5/extensions/regress-379523: FAIL_OK
666js1_5/extensions/regress-380581: FAIL_OK
667js1_5/extensions/regress-380831: FAIL_OK
668js1_5/extensions/regress-381205: FAIL_OK
669js1_5/extensions/regress-381211: FAIL_OK
670js1_5/extensions/regress-381304: FAIL_OK
671js1_5/extensions/regress-382509: FAIL_OK
672js1_5/extensions/regress-383965: FAIL_OK
673js1_5/extensions/regress-384680: FAIL_OK
674js1_5/extensions/regress-385393-09: FAIL_OK
675js1_5/extensions/regress-407501: FAIL_OK
676js1_5/extensions/regress-418730: FAIL_OK
677js1_5/extensions/regress-420612: FAIL_OK
678js1_5/extensions/regress-420869-01: FAIL_OK
679js1_5/extensions/regress-424257: FAIL_OK
680js1_5/extensions/regress-424683-01: FAIL_OK
681js1_5/extensions/regress-44009: FAIL_OK
682js1_5/extensions/regress-50447-1: FAIL_OK
683js1_5/extensions/regress-50447: FAIL_OK
684js1_5/extensions/regress-90596-001: FAIL_OK
685js1_5/extensions/regress-90596-002: FAIL_OK
686js1_5/extensions/regress-96284-001: FAIL_OK
687js1_5/extensions/regress-96284-002: FAIL_OK
688js1_5/extensions/scope-001: FAIL_OK
689js1_5/extensions/toLocaleFormat-01: FAIL_OK
690js1_5/extensions/toLocaleFormat-02: FAIL_OK
691
692
693##################### DECOMPILATION TESTS #####################
694
695# We don't really about the outcome of running the
696# decompilation tests as long as they don't crash or
697# timeout.
698
699js1_5/decompilation/regress-344120: PASS || FAIL
700js1_5/decompilation/regress-346892: PASS || FAIL
701js1_5/decompilation/regress-346902: PASS || FAIL
702js1_5/decompilation/regress-346904: PASS || FAIL
703js1_5/decompilation/regress-346915: PASS || FAIL
704js1_5/decompilation/regress-349484: PASS || FAIL
705js1_5/decompilation/regress-349489: PASS || FAIL
706js1_5/decompilation/regress-349491: PASS || FAIL
707js1_5/decompilation/regress-349596: PASS || FAIL
708js1_5/decompilation/regress-349650: PASS || FAIL
709js1_5/decompilation/regress-349663: PASS || FAIL
710js1_5/decompilation/regress-350242: PASS || FAIL
711js1_5/decompilation/regress-350263: PASS || FAIL
712js1_5/decompilation/regress-350271: PASS || FAIL
713js1_5/decompilation/regress-350666: PASS || FAIL
714js1_5/decompilation/regress-350670: PASS || FAIL
715js1_5/decompilation/regress-351104: PASS || FAIL
716js1_5/decompilation/regress-351219: PASS || FAIL
717js1_5/decompilation/regress-351336: PASS || FAIL
718js1_5/decompilation/regress-351597: PASS || FAIL
719js1_5/decompilation/regress-351625: PASS || FAIL
720js1_5/decompilation/regress-351626: PASS || FAIL
721js1_5/decompilation/regress-351693: PASS || FAIL
722js1_5/decompilation/regress-351705: PASS || FAIL
723js1_5/decompilation/regress-351793: PASS || FAIL
724js1_5/decompilation/regress-352013: PASS || FAIL
725js1_5/decompilation/regress-352022: PASS || FAIL
726js1_5/decompilation/regress-352073: PASS || FAIL
727js1_5/decompilation/regress-352202: PASS || FAIL
728js1_5/decompilation/regress-352312: PASS || FAIL
729js1_5/decompilation/regress-352360: PASS || FAIL
730js1_5/decompilation/regress-352375: PASS || FAIL
731js1_5/decompilation/regress-352453: PASS || FAIL
732js1_5/decompilation/regress-352649: PASS || FAIL
733js1_5/decompilation/regress-352873-01: PASS || FAIL
734js1_5/decompilation/regress-352873-02: PASS || FAIL
735js1_5/decompilation/regress-353000: PASS || FAIL
736js1_5/decompilation/regress-353120: PASS || FAIL
737js1_5/decompilation/regress-353146: PASS || FAIL
738js1_5/decompilation/regress-354878: PASS || FAIL
739js1_5/decompilation/regress-354910: PASS || FAIL
740js1_5/decompilation/regress-355992: PASS || FAIL
741js1_5/decompilation/regress-356083: PASS || FAIL
742js1_5/decompilation/regress-356248: PASS || FAIL
743js1_5/decompilation/regress-371692: PASS || FAIL
744js1_5/decompilation/regress-373678: PASS || FAIL
745js1_5/decompilation/regress-375639: PASS || FAIL
746js1_5/decompilation/regress-375882: PASS || FAIL
747js1_5/decompilation/regress-376564: PASS || FAIL
748js1_5/decompilation/regress-383721: PASS || FAIL
749js1_5/decompilation/regress-406555: PASS || FAIL
750
v8.team.kasperl727e9952008-09-02 14:56:44 +0000751[ $system == windows ]
752
ager@chromium.orgc27e4e72008-09-04 13:52:27 +0000753# This test is flaky because of the default timer resolution on Windows.
754js1_5/extensions/regress-363258: PASS || FAIL
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000755
756[ $FAST == yes ]
757
758# These tests take an unreasonable amount of time so we skip them
759# in fast mode.
760
761js1_5/Regress/regress-312588: SKIP
762js1_5/Regress/regress-271716-n: SKIP
763
764[ $FAST == yes && $ARCH == arm ]
765
766# In fast mode on arm we try to skip all tests that would time out,
767# since running the tests takes so long in the first place.
768
769js1_5/Regress/regress-280769-2: SKIP
770js1_5/Regress/regress-280769-3: SKIP
771js1_5/Regress/regress-244470: SKIP
772js1_5/Regress/regress-203278-1: SKIP
773js1_5/Regress/regress-290575: SKIP
774js1_5/Regress/regress-159334: SKIP
775js1_5/Regress/regress-321971: SKIP
776js1_5/Regress/regress-347306-01: SKIP
777js1_5/Regress/regress-280769-1: SKIP
778js1_5/Regress/regress-280769-5: SKIP
779js1_5/GC/regress-306788: SKIP
780js1_5/GC/regress-203278-2: SKIP
781js1_5/GC/regress-278725: SKIP
782js1_5/GC/regress-203278-3: SKIP
783js1_5/GC/regress-311497: SKIP
784js1_5/Array/regress-99120-02: SKIP
785ecma/Date/15.9.5.22-1: SKIP
786ecma/Date/15.9.5.20: SKIP
787ecma/Date/15.9.5.12-2: SKIP
788ecma/Date/15.9.5.8: SKIP
789ecma/Date/15.9.5.9: SKIP
790ecma/Date/15.9.5.10-2: SKIP
791ecma/Date/15.9.5.11-2: SKIP
792ecma/Expressions/11.7.2: SKIP
793ecma/Expressions/11.10-2: SKIP
794ecma/Expressions/11.7.3: SKIP
795ecma/Expressions/11.10-3: SKIP
796ecma/Expressions/11.7.1: SKIP
797ecma_3/RegExp/regress-209067: SKIP