forked from DGNum/liminix
8 lines
113 B
Bash
Executable file
8 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
|