2
0
mirror of https://github.com/bebbo/amigaos-cross-toolchain.git synced 2025-12-08 22:38:24 +00:00
Files
amigaos-cross-toolchain6/test/runtests
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