liminix/run-tests.sh

10 lines
145 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