liminix/run-tests.sh

9 lines
113 B
Bash
Raw Normal View History

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