114 lines
3.2 KiB
Bash
114 lines
3.2 KiB
Bash
#!/bin/sh
|
|
#
|
|
|
|
if [ $# -ne 3 ]; then
|
|
echo "TSMCFGtools.sh: incorrect number of input arguments"
|
|
exit 1
|
|
fi
|
|
|
|
tool=$(basename $1)
|
|
test_name=TSMCFGtools.$tool.$2.$3
|
|
|
|
|
|
if [ -z "$CLM_RERUN" ]; then
|
|
CLM_RERUN="no"
|
|
fi
|
|
|
|
if [ "$CLM_RERUN" != "yes" ] && [ -f ${CLM_TESTDIR}/${test_name}/TestStatus ]; then
|
|
if grep -c PASS ${CLM_TESTDIR}/${test_name}/TestStatus > /dev/null; then
|
|
echo "TSMCFGtools.sh: smoke test has already passed; results are in "
|
|
echo " ${CLM_TESTDIR}/${test_name}"
|
|
exit 0
|
|
elif grep -c GEN ${CLM_TESTDIR}/${test_name}/TestStatus > /dev/null; then
|
|
echo "TSMCFGtools.sh: test already generated"
|
|
else
|
|
read fail_msg < ${CLM_TESTDIR}/${test_name}/TestStatus
|
|
prev_jobid=${fail_msg#*job}
|
|
|
|
if [ $JOBID = $prev_jobid ]; then
|
|
echo "TSMCFGtools.sh: smoke test has already failed for this job - will not reattempt; "
|
|
echo " results are in: ${CLM_TESTDIR}/${test_name}"
|
|
exit 2
|
|
else
|
|
echo "TSMCFGtools.sh: this smoke test failed under job ${prev_jobid} - moving those results to "
|
|
echo " ${CLM_TESTDIR}/${test_name}_FAIL.job$prev_jobid and trying again"
|
|
cp -rp ${CLM_TESTDIR}/${test_name} ${CLM_TESTDIR}/${test_name}_FAIL.job$prev_jobid
|
|
fi
|
|
fi
|
|
fi
|
|
|
|
cfgdir=`ls -1d ${CLM_ROOT}/tools/${1}*`
|
|
rundir=${CLM_TESTDIR}/${test_name}
|
|
if [ -d ${rundir} ]; then
|
|
rm -r ${rundir}
|
|
fi
|
|
mkdir -p ${rundir}
|
|
if [ $? -ne 0 ]; then
|
|
echo "TSMCFGtools.sh: error, unable to create work subdirectory"
|
|
exit 3
|
|
fi
|
|
cd ${rundir}
|
|
|
|
echo "TSMCFGtools.sh: calling TCBCFGtools.sh to prepare $tool executable"
|
|
${CLM_SCRIPTDIR}/TCBCFGtools.sh $1 $2
|
|
rc=$?
|
|
if [ $rc -ne 0 ]; then
|
|
echo "TSMCFGtools.sh: error from TCBtools.sh= $rc"
|
|
echo "FAIL.job${JOBID}" > TestStatus
|
|
exit 4
|
|
fi
|
|
|
|
echo "TSMCFGtools.sh: running $tool output in ${rundir}/test.log"
|
|
|
|
if [ "$2" = "CFGtools__o" ] || [ "$2" = "CFGtools__do" ]; then
|
|
toolrun="env OMP_NUM_THREADS=${CLM_THREADS} ${CLM_TESTDIR}/TCBCFGtools.$tool.$2/${tool}*"
|
|
else
|
|
toolrun="${CLM_TESTDIR}/TCBCFGtools.$tool.$2/${tool}*"
|
|
fi
|
|
|
|
runfile="${CLM_SCRIPTDIR}/nl_files/$tool.$3"
|
|
if [ ! -f "${runfile}" ]; then
|
|
echo "TSMCFGtools.sh: error ${runfile} input run file not found"
|
|
echo "FAIL.job${JOBID}" > TestStatus
|
|
exit 5
|
|
fi
|
|
|
|
echo "Run file type = ${3#*.}"
|
|
if [ ${3#*.} == "runoptions" ]; then
|
|
runopts=`cat ${runfile} | sed -e "s|CSMDATA|$CSMDATA|g"`
|
|
echo "$toolrun $runopts"
|
|
cp $cfgdir/*.nc .
|
|
if [ "$debug" != "YES" ] && [ "$compile_only" != "YES" ]; then
|
|
$toolrun $runopts >> test.log 2>&1
|
|
rc=$?
|
|
status="PASS"
|
|
else
|
|
echo "Successfully created file" > test.log
|
|
status="GEN"
|
|
rc=0
|
|
fi
|
|
else
|
|
echo "$toolrun < ${runfile}"
|
|
if [ "$debug" != "YES" ] && [ "$compile_only" != "YES" ]; then
|
|
$toolrun < ${runfile} >> test.log 2>&1
|
|
rc=$?
|
|
status="PASS"
|
|
else
|
|
echo "Successfully created file" > test.log
|
|
status="GEN"
|
|
rc=0
|
|
fi
|
|
fi
|
|
|
|
if [ $rc -eq 0 ] && grep -ci "Successfully created " test.log > /dev/null; then
|
|
echo "TSMCFGtools.sh: smoke test passed"
|
|
echo "$status" > TestStatus
|
|
else
|
|
echo "TSMCFGtools.sh: error running $tool, error= $rc"
|
|
echo "TSMCFGtools.sh: see ${CLM_TESTDIR}/${test_name}/test.log for details"
|
|
echo "FAIL.job${JOBID}" > TestStatus
|
|
exit 6
|
|
fi
|
|
|
|
exit 0
|