|
From: Subrata <sub...@us...> - 2008-03-28 08:27:19
|
Update of /cvsroot/ltp/ltp/testscripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21540/ltp/testscripts Modified Files: ltpstress.sh Log Message: The memsize is specified by the user in Mb, but it is converted to Kb in the script, so we should convert it to Mb in the output. The following patch solves this problem: Signed-off-by: Wang Fang <wa...@cn...> Index: ltpstress.sh =================================================================== RCS file: /cvsroot/ltp/ltp/testscripts/ltpstress.sh,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** ltpstress.sh 27 Apr 2007 07:34:10 -0000 1.24 --- ltpstress.sh 28 Mar 2008 08:27:15 -0000 1.25 *************** *** 259,263 **** ${LTPROOT}/pan/pan -e -p -q -S -t ${hours}h -a stress3 -n stress3 -l $logfile -f ${TMP}/stress.part3 -o $output3 & ! echo "Running LTP Stress for $hours hour(s) using $memsize Mb" echo "" echo "Test output recorded in:" --- 259,263 ---- ${LTPROOT}/pan/pan -e -p -q -S -t ${hours}h -a stress3 -n stress3 -l $logfile -f ${TMP}/stress.part3 -o $output3 & ! echo "Running LTP Stress for $hours hour(s) using $(($memsize/1024)) Mb" echo "" echo "Test output recorded in:" |