Commit 779da1d0 authored by Al Muthanna Athamina's avatar Al Muthanna Athamina Committed by V8 LUCI CQ

[NumFuzz] Skip flakey tests on interrupt fuzzer

Bug: v8:13269
Change-Id: Icb8b83b5f4695a9739d10d15936f4fead3b35ad1
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3886865Reviewed-by: 's avatarMichael Achenbach <machenbach@chromium.org>
Commit-Queue: Almothana Athamneh <almuthanna@chromium.org>
Cr-Commit-Position: refs/heads/main@{#83114}
parent f85e8c47
......@@ -1101,14 +1101,17 @@
# BUG(v8:11656) Skipped until we make progress on NumFuzz.
'baseline/test-osr': [SKIP],
# BUG(v8:13153) Skipped until issue is fixed to reduce noise on alerts.
'regress/regress-1034322': [SKIP],
}], # gc_fuzzer or deopt_fuzzer
##############################################################################
['gc_fuzzer or deopt_fuzzer or interrupt_fuzzer', {
# BUG(v8:12842) Skipped until we remove flakes on NumFuzz.
'compiler/regress-1224277': [SKIP],
'regress/regress-1220974': [SKIP],
'regress/regress-992389': [SKIP],
# BUG(v8:13153) Skipped until issue is fixed to reduce noise on alerts.
'regress/regress-1034322': [SKIP],
}], # gc_fuzzer or deopt_fuzzer
}], # gc_fuzzer or deopt_fuzzer or interrupt_fuzzer
##############################################################################
['endurance_fuzzer', {
......
......@@ -573,6 +573,8 @@ class BaseTestRunner(object):
self.build_config.is_clang,
"is_full_debug":
self.build_config.is_full_debug,
"interrupt_fuzzer":
False,
"mips_arch_variant":
self.build_config.mips_arch_variant,
"mode":
......
......@@ -132,16 +132,23 @@ class NumFuzzer(base_runner.BaseTestRunner):
variables = (
super(NumFuzzer, self)._get_statusfile_variables())
variables.update({
'deopt_fuzzer': bool(self.options.stress_deopt),
'endurance_fuzzer': bool(self.options.combine_tests),
'gc_stress': bool(self.options.stress_gc),
'gc_fuzzer': bool(max([self.options.stress_marking,
self.options.stress_scavenge,
self.options.stress_compaction,
self.options.stress_gc,
self.options.stress_delay_tasks,
self.options.stress_stack_size,
self.options.stress_thread_pool_size])),
'deopt_fuzzer':
bool(self.options.stress_deopt),
'interrupt_fuzzer':
bool(self.options.stress_interrupt_budget),
'endurance_fuzzer':
bool(self.options.combine_tests),
'gc_stress':
bool(self.options.stress_gc),
'gc_fuzzer':
bool(
max([
self.options.stress_marking, self.options.stress_scavenge,
self.options.stress_compaction, self.options.stress_gc,
self.options.stress_delay_tasks,
self.options.stress_stack_size,
self.options.stress_thread_pool_size
])),
})
return variables
......
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