Allow a test that relies on non-standard timer resolution on Windows

to fail on Windows.

Updated mozilla.status to use correct syntax for tests that are
allowed to fail in debug mode.


git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@97 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
mads.s.ager@gmail.com 2008-09-02 12:42:10 +00:00
parent c2c5482c9b
commit 30e44ee4fd
2 changed files with 19 additions and 14 deletions

View File

@ -69,20 +69,20 @@ js1_5/GC/regress-348532: SLOW
##################### FLAKY TESTS #####################
# These tests time out in debug mode but pass in product mode
js1_5/Regress/regress-280769-3: PASS || ($DEBUG && FAIL)
js1_5/Regress/regress-203278-1: PASS || ($DEBUG && FAIL)
js1_5/GC/regress-203278-2: PASS || ($DEBUG && FAIL)
js1_5/Regress/regress-244470: PASS || ($DEBUG && FAIL)
ecma_3/RegExp/regress-209067: PASS || ($DEBUG && FAIL)
js1_5/GC/regress-278725: PASS || ($DEBUG && FAIL)
js1_5/Regress/regress-360969-03: PASS || ($DEBUG && FAIL)
js1_5/Regress/regress-360969-04: PASS || ($DEBUG && FAIL)
js1_5/Regress/regress-360969-05: PASS || ($DEBUG && FAIL)
js1_5/Regress/regress-360969-06: PASS || ($DEBUG && FAIL)
js1_5/extensions/regress-365527: PASS || ($DEBUG && FAIL)
js1_5/Regress/regress-280769-3: PASS || FAIL if $mode == debug
js1_5/Regress/regress-203278-1: PASS || FAIL if $mode == debug
js1_5/GC/regress-203278-2: PASS || FAIL if $mode == debug
js1_5/Regress/regress-244470: PASS || FAIL if $mode == debug
ecma_3/RegExp/regress-209067: PASS || FAIL if $mode == debug
js1_5/GC/regress-278725: PASS || FAIL if $mode == debug
js1_5/Regress/regress-360969-03: PASS || FAIL if $mode == debug
js1_5/Regress/regress-360969-04: PASS || FAIL if $mode == debug
js1_5/Regress/regress-360969-05: PASS || FAIL if $mode == debug
js1_5/Regress/regress-360969-06: PASS || FAIL if $mode == debug
js1_5/extensions/regress-365527: PASS || FAIL if $mode == debug
# http://b/issue?id=1206983
js1_5/Regress/regress-367561-03: PASS || ($DEBUG && FAIL)
ecma/Date/15.9.5.10-2: PASS || ($DEBUG && FAIL)
js1_5/Regress/regress-367561-03: PASS || FAIL if $mode == debug
ecma/Date/15.9.5.10-2: PASS || FAIL if $mode == debug
# These tests create two Date objects just after each other and
# expects them to match. Sometimes this happens on the border
@ -717,6 +717,10 @@ js1_5/decompilation/regress-376564: PASS || FAIL
js1_5/decompilation/regress-383721: PASS || FAIL
js1_5/decompilation/regress-406555: PASS || FAIL
[ $system == windows ]
# This test fails because of the default timer resolution on Windows.
js1_5/extensions/regress-363258: FAIL_OK
[ $FAST == yes ]

View File

@ -1045,7 +1045,8 @@ def Main():
for path in paths:
for mode in options.mode:
env = {
'mode': mode
'mode': mode,
'system': platform.system().lower()
}
test_list = root.ListTests([], path, context, mode)
(cases, unused_rules) = config.ClassifyTests(test_list, env)