mirror of
https://git.proxmox.com/git/systemd
synced 2025-07-25 16:00:06 +00:00
14 lines
124 B
Bash
Executable File
14 lines
124 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -x
|
|
set -e
|
|
|
|
>/failed
|
|
|
|
for t in test-*.sh; do
|
|
echo "Running $t"; ./$t
|
|
done
|
|
|
|
touch /testok
|
|
rm /failed
|