Commit fef6282f authored by Michael Achenbach's avatar Michael Achenbach Committed by Commit Bot

[test] Skip slow tests

Also mark another slow tests as SLOW.

TBR=jgruber@chromium.org

Bug: v8:7783
Change-Id: I69a8ac82e7898fa3b374c5b66a441f040d241413
Reviewed-on: https://chromium-review.googlesource.com/1069093Reviewed-by: 's avatarMichael Achenbach <machenbach@chromium.org>
Commit-Queue: Michael Achenbach <machenbach@chromium.org>
Cr-Commit-Position: refs/heads/master@{#53306}
parent 45fa14f0
...@@ -164,6 +164,7 @@ ...@@ -164,6 +164,7 @@
'regress/regress-605470': [PASS, SLOW], 'regress/regress-605470': [PASS, SLOW],
'regress/regress-655573': [PASS, SLOW], 'regress/regress-655573': [PASS, SLOW],
'regress/regress-1200351': [PASS, SLOW], 'regress/regress-1200351': [PASS, SLOW],
'wasm/asm-wasm-f32': [PASS, SLOW],
'wasm/embenchen/*': [PASS, SLOW], 'wasm/embenchen/*': [PASS, SLOW],
'wasm/grow-memory': [PASS, SLOW], 'wasm/grow-memory': [PASS, SLOW],
'wasm/unreachable-validation': [PASS, SLOW], 'wasm/unreachable-validation': [PASS, SLOW],
...@@ -781,6 +782,7 @@ ...@@ -781,6 +782,7 @@
# Slow tests: https://crbug.com/v8/7783 # Slow tests: https://crbug.com/v8/7783
'array-sort': [SKIP], 'array-sort': [SKIP],
'compiler/alloc-number': [SKIP], 'compiler/alloc-number': [SKIP],
'compiler/osr-nested': [SKIP],
'compiler/osr-one': [SKIP], 'compiler/osr-one': [SKIP],
'compiler/osr-two': [SKIP], 'compiler/osr-two': [SKIP],
'regress/regress-2185': [SKIP], 'regress/regress-2185': [SKIP],
......
...@@ -35,6 +35,9 @@ ...@@ -35,6 +35,9 @@
'dfg-inline-arguments-reset-changetype': [PASS, FAIL], 'dfg-inline-arguments-reset-changetype': [PASS, FAIL],
# Irregexp interpreter overflows stack. We should just not crash. # Irregexp interpreter overflows stack. We should just not crash.
'fast/js/regexp-stack-overflow': [PASS, FAIL], 'fast/js/regexp-stack-overflow': [PASS, FAIL],
# Slow tests.
'dfg-double-vote-fuzz': [PASS, SLOW],
}], # ALWAYS }], # ALWAYS
['system == windows', { ['system == windows', {
# Exceeds call stack on windows after MSVS2017 switch. # Exceeds call stack on windows after MSVS2017 switch.
...@@ -112,6 +115,12 @@ ...@@ -112,6 +115,12 @@
'fast/js/excessive-comma-usage': [SKIP], 'fast/js/excessive-comma-usage': [SKIP],
}], # arch == arm64 and msan }], # arch == arm64 and msan
##############################################################################
['(variant == nooptimization or variant == stress) and (arch == arm or arch == arm64) and simulator_run', {
# Slow tests: https://crbug.com/v8/7783
'dfg-double-vote-fuzz': [SKIP],
}], # (variant == nooptimization or variant == stress) and (arch == arm or arch == arm64) and simulator_run
############################################################################## ##############################################################################
['gcov_coverage', { ['gcov_coverage', {
# Tests taking too long or getting too large call stacks. # Tests taking too long or getting too large call stacks.
......
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