liminix-fork/run-tests.sh
2022-09-20 16:09:44 +01:00

10 lines
142 B
Bash
Executable file

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