mirror of
https://github.com/systemd/systemd-stable.git
synced 2024-12-22 13:33:56 +03:00
test: tweak the path trigger limit a bit when collecting coverage
Basically the same thing as ine70103e
, but for TEST-63. Uses directives introduced by47dba9f
. Follow-up toaaae822
.
This commit is contained in:
parent
28be02e005
commit
2cb726adf5
@ -7,4 +7,16 @@ TEST_DESCRIPTION="https://github.com/systemd/systemd/issues/17433"
|
|||||||
# shellcheck source=test/test-functions
|
# shellcheck source=test/test-functions
|
||||||
. "${TEST_BASE_DIR:?}/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 "$@"
|
do_test "$@"
|
||||||
|
Loading…
Reference in New Issue
Block a user