Commit 76aef2f3 authored by Michael Starzinger's avatar Michael Starzinger Committed by Commit Bot

[test] Remove Crankshaft stress test variant.

This removes the test suite variant for stressing Crankshaft from the
list of supported variants. Other stress variants remain untouched.

R=machenbach@chromium.org

Cq-Include-Trybots: master.tryserver.v8:v8_linux_noi18n_rel_ng
Change-Id: Iad236c2b80a1dea21b8be9b931e6a4e88f3ebcc5
Reviewed-on: https://chromium-review.googlesource.com/527094Reviewed-by: 's avatarBenedikt Meurer <bmeurer@chromium.org>
Reviewed-by: 's avatarMichael Achenbach <machenbach@chromium.org>
Commit-Queue: Michael Starzinger <mstarzinger@chromium.org>
Cr-Commit-Position: refs/heads/master@{#45758}
parent 66218e4e
......@@ -31,14 +31,14 @@
}], # ALWAYS
##############################################################################
['variant == stress or variant == noturbofan_stress', {
['variant == stress', {
# TODO(jarin/mstarzinger): Functions with eval or debugger now get optimized
# with Turbofan, which has issues with the debugger issues.
'debug/debug-evaluate-locals': [FAIL],
# Very slow in stress mode.
'regress/regress-2318': [SKIP],
}], # variant == stress or variant == noturbofan_stress
}], # variant == stress
##############################################################################
['gc_stress == True', {
......@@ -80,10 +80,10 @@
}], # 'arch == arm and not simulator_run'
##############################################################################
['variant in [noturbofan, noturbofan_stress] and system == macos and asan', {
['variant == noturbofan and system == macos and asan', {
# Too slow for old pipeline and mac asan.
'debug/*': [SKIP],
}], # variant in [noturbofan, noturbofan_stress] and system == macos and asan
}], # variant == noturbofan and system == macos and asan
##############################################################################
['arch == s390 or arch == s390x', {
......
......@@ -620,17 +620,6 @@
'regress/regress-2185-2': [SKIP],
}], # variant == stress
##############################################################################
['variant == noturbofan_stress', {
# Slow tests.
'ignition/regress-599001-verifyheap': [SKIP],
'regress/regress-2185-2': [SKIP],
# Crankshaft bug, wrong elements kind: crbug.com/v8/6342
'regress/regress-2671': [SKIP],
'regress/regress-2671-1': [SKIP],
}], # variant == noturbofan_stress
##############################################################################
['variant == nooptimization', {
# Slow tests.
......
......@@ -603,10 +603,10 @@
'built-ins/Promise/prototype/then/deferred-is-resolved-value': [SKIP],
}], # asan == True
['asan and variant in [noturbofan, noturbofan_stress, fullcode]', {
['asan and variant in [noturbofan, fullcode]', {
# Demands too many resources to test the old pipeline with asan.
'*': [SKIP],
}], # asan and variant in [noturbofan, noturbofan_stress, fullcode]
}], # asan and variant in [noturbofan, fullcode]
['asan == True or msan == True or tsan == True', {
# https://bugs.chromium.org/p/v8/issues/detail?id=4639
......
......@@ -113,7 +113,6 @@ VARIANTS = ["default", "noturbofan"]
MORE_VARIANTS = [
"stress",
"noturbofan_stress",
"nooptimization",
"asm_wasm",
"wasm_traps",
......
......@@ -9,7 +9,6 @@ ALL_VARIANT_FLAGS = {
"turbofan": [["--turbo"]],
"turbofan_opt": [["--turbo", "--always-opt"]],
"noturbofan": [["--no-turbo"]],
"noturbofan_stress": [["--no-turbo", "--stress-opt", "--always-opt"]],
"fullcode": [["--noopt", "--no-turbo"]],
# No optimization means disable all optimizations. OptimizeFunctionOnNextCall
# would not force optimization too. It turns into a Nop. Please see
......@@ -25,7 +24,6 @@ FAST_VARIANT_FLAGS = {
"stress": [["--stress-opt"]],
"turbofan": [["--turbo"]],
"noturbofan": [["--no-turbo"]],
"noturbofan_stress": [["--no-turbo", "--stress-opt"]],
"fullcode": [["--noopt", "--no-turbo"]],
# No optimization means disable all optimizations. OptimizeFunctionOnNextCall
# would not force optimization too. It turns into a Nop. Please see
......@@ -36,5 +34,5 @@ FAST_VARIANT_FLAGS = {
}
ALL_VARIANTS = set(["default", "stress", "turbofan", "turbofan_opt",
"noturbofan", "noturbofan_stress", "fullcode",
"nooptimization", "asm_wasm", "wasm_traps"])
"noturbofan", "fullcode", "nooptimization", "asm_wasm",
"wasm_traps"])
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