liminix-fork/run-tests.sh
Daniel Barlow b2f7a429f7 build a kernel, using malta_kvm_defconfig
(there's a lot in this config that I don't think is needed)
2022-09-20 18:54:27 +01:00

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