Files
amigaos-cross-toolchain6/test/runtests
T
2017-05-27 00:00:48 +02:00

9 lines
125 B
Plaintext
Executable File

for t in test* ; do
if [ -d $t ]; then
echo cc $t
pushd $t
./cc || { popd; echo $t failed; exit 1; }
popd
fi
done