1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2025-03-06 12:58:22 +03:00
2021-10-18 09:04:45 +02:00

16 lines
209 B
Bash
Executable File

#!/usr/bin/env bash
# SPDX-License-Identifier: LGPL-2.1-or-later
set -eux
set -o pipefail
: >/failed
udevadm settle
for t in "${0%.sh}".*.sh; do
echo "Running $t"; ./"$t"
done
touch /testok
rm /failed