mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-31 17:10:47 +08:00
[svn-r9714] Purpose:
bug fix Description: Setup the time limit with the wrong unit concept. 300 is only 300 seconds, not 300 minutes. Set them to the correct values.
This commit is contained in:
parent
f381ef7b59
commit
9d241be57f
@ -528,7 +528,7 @@ errcode=0 # error code of the whole test
|
||||
skiptest=no # if test is skipped
|
||||
CC_SAVED="$CC" # CC & PATH maybe changed within a test.
|
||||
PATH_SAVED=$PATH # These save the original values.
|
||||
|
||||
timelimit=`expr 3600 \* 5` # time limit for the timekeeper
|
||||
|
||||
#################################
|
||||
# Parse options
|
||||
@ -747,8 +747,8 @@ if [ -n "$TESTHOST" -a $HOSTNAME != "$TESTHOST" ]; then
|
||||
cd ${SNAPYARD}/log
|
||||
# Fork off timekeeper if concurrent tests will be used.
|
||||
if [ -n "$SRCDIR" ]; then
|
||||
($SNAPYARD/current/bin/timekeeper 300 &)
|
||||
PRINT " Fork off timekeeper 300"
|
||||
($SNAPYARD/current/bin/timekeeper $timelimit &)
|
||||
PRINT " Fork off timekeeper $timelimit"
|
||||
fi
|
||||
n_test=0
|
||||
runtest_type="hosts"
|
||||
|
@ -20,7 +20,7 @@
|
||||
# Created Date: 2004/12/23
|
||||
|
||||
# variable initialization
|
||||
waitperiod=300 # default to 5 hours
|
||||
waitperiod=`expr 3600 \* 5` # default to 5 hours
|
||||
debugtimelimit=
|
||||
debugflag= # no debug
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user