Correct test scripts config file

Added "mkdir _check_builds" if it does not exist
This commit is contained in:
Gwenal Delaval 2012-07-16 18:48:03 +02:00
parent 295997b866
commit 40cf503149

View file

@ -17,3 +17,8 @@ HEPTC="../$COMPILER_DIR/$COMPILER -stdlib ../../lib"
CC="gcc -std=c99 -I ../../../lib/c"
LD="gcc"
NBSTEP=100
if [ ! -x $checkdir ];
then
mkdir $checkdir
fi