Disable webkit/array-iterate-backwards for debug builds.
(Debug builds have --enable-slow-asserts, and with slow asserts each assignment to the array in the prepare function will trigger a check over the entire array. This turns it into n^2 work, for reasonably large n.) BUG= Review URL: https://codereview.chromium.org/831953003 Cr-Commit-Position: refs/heads/master@{#26006}
This commit is contained in:
parent
affc68b8aa
commit
c72c28dd00
@ -44,9 +44,8 @@
|
|||||||
'dfg-double-vote-fuzz': [SKIP],
|
'dfg-double-vote-fuzz': [SKIP],
|
||||||
'reentrant-caching': [SKIP],
|
'reentrant-caching': [SKIP],
|
||||||
'sort-large-array': [SKIP],
|
'sort-large-array': [SKIP],
|
||||||
# Too slow on windows with --nocrankshaft.
|
# Too slow with --enable-slow-asserts.
|
||||||
# TODO(mstarzinger): Too slow with TF.
|
'array-iterate-backwards': [SKIP],
|
||||||
'array-iterate-backwards': [PASS, NO_VARIANTS],
|
|
||||||
}], # 'mode == debug'
|
}], # 'mode == debug'
|
||||||
['simulator', {
|
['simulator', {
|
||||||
# Skip tests that timeout with turbofan.
|
# Skip tests that timeout with turbofan.
|
||||||
@ -71,7 +70,6 @@
|
|||||||
|
|
||||||
['gc_stress == True and mode == debug', {
|
['gc_stress == True and mode == debug', {
|
||||||
# Skip tests that timeout.
|
# Skip tests that timeout.
|
||||||
'array-iterate-backwards': [SKIP]
|
|
||||||
}], # 'gc_stress == True and mode == debug'
|
}], # 'gc_stress == True and mode == debug'
|
||||||
|
|
||||||
##############################################################################
|
##############################################################################
|
||||||
|
Loading…
Reference in New Issue
Block a user