1
0
Fork 0
liminix/run-tests.sh

9 lines
113 B
Bash
Executable File

#!/usr/bin/env bash
export TMPDIR=${TMPDIR-/tmp}
for i in tests/*/run.sh; do
echo $i
$i || exit 1
done