[GENLINK] Make tests in paralell

usage:

make genlinktests -j

speedup: 4 times on 8-core system
This commit is contained in:
BuFran
2013-07-07 13:14:37 +02:00
committed by Piotr Esden-Tempski
parent 6a41e5fccb
commit 8d94bdc11c
2 changed files with 10 additions and 8 deletions

View File

@@ -30,12 +30,10 @@ awk -v PAT="$PAAT" -f scripts/genlink.awk $1.data > $1.out;
#check test
if ! diff -q $1.out $1.result >/dev/null; then
printf "FAILED\n";
exit 1;
fi
#remove workout only if it is OK
rm -f $1.out
printf "OK\n";
exit 0