Commit c72c28dd authored by vogelheim's avatar vogelheim Committed by Commit bot

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}
parent affc68b8
......@@ -44,9 +44,8 @@
'dfg-double-vote-fuzz': [SKIP],
'reentrant-caching': [SKIP],
'sort-large-array': [SKIP],
# Too slow on windows with --nocrankshaft.
# TODO(mstarzinger): Too slow with TF.
'array-iterate-backwards': [PASS, NO_VARIANTS],
# Too slow with --enable-slow-asserts.
'array-iterate-backwards': [SKIP],
}], # 'mode == debug'
['simulator', {
# Skip tests that timeout with turbofan.
......@@ -71,7 +70,6 @@
['gc_stress == True and mode == debug', {
# Skip tests that timeout.
'array-iterate-backwards': [SKIP]
}], # 'gc_stress == True and mode == debug'
##############################################################################
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment