From c14e2b6592884463bdf187d15a1b97ea7fe93148 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Christian=20W=C3=BCrdig?= Date: Mon, 21 Aug 2006 15:12:44 +0000 Subject: [PATCH] some minor changes --- ir/be/test/makereport.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/ir/be/test/makereport.sh b/ir/be/test/makereport.sh index 84a516231..6007cc96f 100755 --- a/ir/be/test/makereport.sh +++ b/ir/be/test/makereport.sh @@ -43,9 +43,9 @@ for file in $curdir/$CFILES; do echo "Building $name" echo "Results for $name" > $res echo "*** EDG/FIRM Compile" >> $res - CMD="ulimit -t$TIMEOUT_COMPILE ; ${EDG_BIN} ${EDG_CFLAGS} $file" + CMD="ulimit -t${TIMEOUT_COMPILE} ; ${EDG_BIN} ${EDG_CFLAGS} $file" echo "$CMD" >> $res - /bin/bash -c "ulimit -t300 ; ${EDG_BIN} ${EDG_CFLAGS} $file" >> $res 2>&1 || COMPILE_RES="failed" + /bin/bash -c "ulimit -t${TIMEOUT_COMPILE} ; ${EDG_BIN} ${EDG_CFLAGS} $file" >> $res 2>&1 || COMPILE_RES="failed" if [ ${COMPILE_RES} == "ok" ]; then LINK_RES="ok" @@ -67,18 +67,18 @@ for file in $curdir/$CFILES; do GCC_RUN_RES="ok" echo "*** Run GCC" >> $res - CMD="build_gcc/$name.exe > $OUTPUTDIR/result_gcc_$name.txt 2>&1" + CMD="ulimit -t${TIMEOUT_RUN} ; build_gcc/$name.exe > $OUTPUTDIR/result_gcc_$name.txt 2>&1" echo "$CMD" >> $res - /bin/bash -c "ulimit -t$TIMEOUT_RUN ; build_gcc/$name.exe" > $OUTPUTDIR/result_gcc_$name.txt 2>&1 || GCC_RUN_RES="failed" + /bin/bash -c "ulimit -t${TIMEOUT_RUN} ; build_gcc/$name.exe" > $OUTPUTDIR/result_gcc_$name.txt 2>&1 || GCC_RUN_RES="failed" fi if [ ${LINK_RES} = "ok" ]; then FIRM_RUN_RES="ok" echo "*** Run Firm" >> $res - CMD="build_firm/$name.exe > $OUTPUTDIR/result_gcc_$name.txt 2>&1" + CMD="ulimit -t${TIMEOUT_RUN} ; build_firm/$name.exe > $OUTPUTDIR/result_gcc_$name.txt 2>&1" echo "$CMD" >> $res - /bin/bash -c "ulimit -t$TIMEOUT_RUN ; build_firm/$name.exe" > $OUTPUTDIR/result_firm_$name.txt 2>&1 || FIRM_RUN_RES="failed" + /bin/bash -c "ulimit -t${TIMEOUT_RUN} ; build_firm/$name.exe" > $OUTPUTDIR/result_firm_$name.txt 2>&1 || FIRM_RUN_RES="failed" fi if [ ${GCC_RUN_RES} = "ok" -a ${FIRM_RUN_RES} = "ok" ]; then -- 2.20.1