liminix/run-tests.sh

8 lines
102 B
Bash
Raw Normal View History

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