diff options
author | Frantisek Sumsal <frantisek@sumsal.cz> | 2023-02-20 10:50:06 +0100 |
---|---|---|
committer | Frantisek Sumsal <frantisek@sumsal.cz> | 2023-02-20 10:50:06 +0100 |
commit | 85cce734c975e40e180ae471b61be5a4cc328c58 (patch) | |
tree | 82fde60e48324bd6bb9f62d6c8493d9b03abab9b /test | |
parent | test: disable pipefail when testing interactive firstboot (diff) | |
download | systemd-85cce734c975e40e180ae471b61be5a4cc328c58.tar.xz systemd-85cce734c975e40e180ae471b61be5a4cc328c58.zip |
test: ignore missing coverage in TEST-78
gcov is incompatible with DynamicUser=true without additional tweaks, so
let's ignore its complaints in this test, as working around it is not
worth it (in this case).
Diffstat (limited to 'test')
-rwxr-xr-x | test/TEST-78-SIGQUEUE/test.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/TEST-78-SIGQUEUE/test.sh b/test/TEST-78-SIGQUEUE/test.sh index 61e8e7d1c4..80ce7926ab 100755 --- a/test/TEST-78-SIGQUEUE/test.sh +++ b/test/TEST-78-SIGQUEUE/test.sh @@ -3,6 +3,8 @@ set -e TEST_DESCRIPTION="Test queue signal logic" +# Ignore gcov complaints caused by DynamicUser=true +IGNORE_MISSING_COVERAGE=yes # shellcheck source=test/test-functions . "$TEST_BASE_DIR/test-functions" |