summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrantisek Sumsal <frantisek@sumsal.cz>2021-10-25 11:02:22 +0200
committerFrantisek Sumsal <frantisek@sumsal.cz>2021-10-25 11:02:22 +0200
commite70103e2d4543efedc340f352fe77c4cadf23b52 (patch)
treea4c1fe16009f4ff8656c3743b28ee8dba28fc09e
parent6dbfbc4667656b51cd03a5db393441710bde4dd9 (diff)
downloadsystemd-e70103e2d4543efedc340f352fe77c4cadf23b52.tar.gz
test: tweak TriggerLimitIntervalSec= when built with coverage
Collecting coverage causes a significant slowdown in general, but since this test requires certain timing, we need to tweak the defaults to make it reliably pass.
-rwxr-xr-xtest/TEST-10-ISSUE-2467/test.sh12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/TEST-10-ISSUE-2467/test.sh b/test/TEST-10-ISSUE-2467/test.sh
index b510627a70..8dabf3f2b6 100755
--- a/test/TEST-10-ISSUE-2467/test.sh
+++ b/test/TEST-10-ISSUE-2467/test.sh
@@ -7,4 +7,16 @@ TEST_DESCRIPTION="https://github.com/systemd/systemd/issues/2467"
# shellcheck source=test/test-functions
. "${TEST_BASE_DIR:?}/test-functions"
+test_append_files() {
+ (
+ # Collecting coverage slows this particular test quite a bit, causing
+ # it to fail with the default settings (20 triggers per 2 secs)
+ # to trip over the default limit. Let's help it a bit in such case.
+ if get_bool "$IS_BUILT_WITH_COVERAGE"; then
+ mkdir -p "${initdir:?}/etc/systemd/system/test10.socket.d"
+ printf "[Socket]\nTriggerLimitIntervalSec=10\n" >"${initdir:?}/etc/systemd/system/test10.socket.d/coverage-override.conf"
+ fi
+ )
+}
+
do_test "$@"