summaryrefslogtreecommitdiffstats
path: root/test/TEST-22-TMPFILES/run-tmpfiles-tests.sh
blob: 3ad652f4ede0af1fb872bd6ba13850738d70438d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash

set -x
set -e

>/failed

for t in test-*.sh; do
        echo "Running $t"; ./$t
done

touch /testok
rm /failed