mirror of
https://github.com/systemd/systemd.git
synced 2024-11-02 19:21:53 +03:00
14 lines
124 B
Bash
14 lines
124 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -x
|
||
|
set -e
|
||
|
|
||
|
>/failed
|
||
|
|
||
|
for t in test-*.sh; do
|
||
|
echo "Running $t"; ./$t
|
||
|
done
|
||
|
|
||
|
touch /testok
|
||
|
rm /failed
|