mirror of
https://github.com/systemd/systemd.git
synced 2024-12-01 14:23:36 +08:00
07268394d6
And drop it where not necessary.
13 lines
311 B
Bash
Executable File
13 lines
311 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
set -eux
|
|
set -o pipefail
|
|
|
|
# shellcheck source=test/units/test-control.sh
|
|
. "$(dirname "$0")"/test-control.sh
|
|
|
|
# Note: the signal shenanigans are necessary for the Upholds= tests
|
|
run_subtests_with_signals SIGUSR1 SIGUSR2 SIGRTMIN+1
|
|
|
|
touch /testok
|