summaryrefslogtreecommitdiff
path: root/smoketest/scripts
diff options
context:
space:
mode:
authorChristian Breunig <christian@breunig.cc>2024-10-07 20:01:20 +0200
committerGitHub <noreply@github.com>2024-10-07 20:01:20 +0200
commit1efb1105f2be65c1126b8f90222306591b8484f7 (patch)
treeb930448575a089302274412627e00b8cb926ac9e /smoketest/scripts
parentf7086df4eff221abaaf26d6f05403642c69369a3 (diff)
parent810d9a819ee378460a05ed6c7e064fb105058fc2 (diff)
downloadvyos-1x-1efb1105f2be65c1126b8f90222306591b8484f7.tar.gz
vyos-1x-1efb1105f2be65c1126b8f90222306591b8484f7.zip
Merge pull request #4129 from c-po/accel-smoketest
smoketest: T4576: add guard timeout for systemd in log level tests
Diffstat (limited to 'smoketest/scripts')
-rw-r--r--smoketest/scripts/cli/base_accel_ppp_test.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/smoketest/scripts/cli/base_accel_ppp_test.py b/smoketest/scripts/cli/base_accel_ppp_test.py
index c6f6cb804..750702e98 100644
--- a/smoketest/scripts/cli/base_accel_ppp_test.py
+++ b/smoketest/scripts/cli/base_accel_ppp_test.py
@@ -14,6 +14,7 @@
import re
+from time import sleep
from base_vyostest_shim import VyOSUnitTestSHIM
from configparser import ConfigParser
@@ -641,6 +642,11 @@ delegate={delegate_2_prefix},{delegate_mask},name={pool_name}"""
for log_level in range(0, 5):
self.set(['log', 'level', str(log_level)])
self.cli_commit()
+
+ # Systemd comes with a default of 5 restarts in 10 seconds policy,
+ # this limit can be hit by this reastart sequence, slow down a bit
+ sleep(5)
+
# Validate configuration values
conf = ConfigParser(allow_no_value=True)
conf.read(self._config_file)