From: Frantisek Sumsal Date: Mon, 20 Dec 2021 18:52:47 +0000 (+0100) Subject: test: tweak the path trigger limit a bit when collecting coverage X-Git-Tag: v250~21 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2cb726adf542a542234ad16d1860732fdab6312d;p=thirdparty%2Fsystemd.git test: tweak the path trigger limit a bit when collecting coverage Basically the same thing as in e70103e, but for TEST-63. Uses directives introduced by 47dba9f. Follow-up to aaae822. --- diff --git a/test/TEST-63-ISSUE-17433/test.sh b/test/TEST-63-ISSUE-17433/test.sh index 4d132ba9396..fd83b5fa6f2 100755 --- a/test/TEST-63-ISSUE-17433/test.sh +++ b/test/TEST-63-ISSUE-17433/test.sh @@ -7,4 +7,16 @@ TEST_DESCRIPTION="https://github.com/systemd/systemd/issues/17433" # 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/test63.path.d" + printf "[Path]\nTriggerLimitIntervalSec=10\n" >"${initdir:?}/etc/systemd/system/test63.path.d/coverage-override.conf" + fi + ) +} + do_test "$@"