2
0
mirror of https://frontier.innolan.net/github/amigaos-cross-toolchain6.git synced 2024-10-19 10:29:55 +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