mirror of
https://github.com/systemd/systemd.git
synced 2024-10-29 21:55:36 +03:00
85cce734c9
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).
13 lines
285 B
Bash
Executable File
13 lines
285 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
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"
|
|
|
|
do_test "$@"
|