liminix-fork/run-tests.sh

9 lines
113 B
Bash
Raw Normal View History

#!/usr/bin/env bash
export TMPDIR=${TMPDIR-/tmp}
2022-09-20 17:07:55 +02:00
for i in tests/*/run.sh; do
echo $i
2022-09-20 17:07:55 +02:00
$i || exit 1
done