From 5e0275eb2fd18c8ff40ae839ee668a44d50a447a Mon Sep 17 00:00:00 2001 From: Ondrej Mosnacek Date: Jan 19 2021 13:04:27 +0000 Subject: kernel/synflood: require at least 64 cores and 2 NUMA nodes Based on several runs in Beaker, these seem to be the best conditions for distinguishing the bug. Currently, legacy Beaker HW filters are used in the metadata. Once TMT introduces support for generic HW requirements, they will need to be converted to the new format. Signed-off-by: Ondrej Mosnacek --- diff --git a/kernel/synflood/main.fmf b/kernel/synflood/main.fmf index f69d6ef..94c46d0 100644 --- a/kernel/synflood/main.fmf +++ b/kernel/synflood/main.fmf @@ -24,4 +24,6 @@ adjust: enabled: false when: distro < rhel-8 because: The test doesn't work well on RHEL-7 -extra-hardware: 'keyvalue = PROCESSORS >= 8' +extra-hardware: | + keyvalue = PROCESSORS >= 64 + hostrequire = diff --git a/kernel/synflood/runtest.sh b/kernel/synflood/runtest.sh index db5a080..aaaf8ab 100755 --- a/kernel/synflood/runtest.sh +++ b/kernel/synflood/runtest.sh @@ -20,9 +20,9 @@ function isBefore() { } rlJournalStart -if [ $(nproc) -lt 8 ]; then +if [ $(nproc) -lt 64 ]; then rlPhaseStartTest "SKIP" - rlLog "At least 8 cores needed to run this test, skipping..." + rlLog "At least 64 cores needed to run this test, skipping..." rlPhaseEnd else rlPhaseStartSetup