mirror of
https://github.com/nwchemgit/nwchem.git
synced 2026-07-28 22:25:48 -04:00
redirect stderr
This commit is contained in:
parent
77aad58473
commit
e055443a33
1 changed files with 3 additions and 3 deletions
|
|
@ -357,15 +357,15 @@ sync
|
|||
if [ -z $USE_SLEEPLOOP ]; then
|
||||
${MPIRUN} ${NWCHEM} ${INPUTFILE} 2> ${ERRORFILE} 1> ${OUTPUTFILE}
|
||||
else
|
||||
${NWCHEM_TOP}/QA/sleep_loopqa.sh $MPIRUN $NPOPT $NPROC $NWCHEM $INPUTFILE $OUTPUTFILE
|
||||
${NWCHEM_TOP}/QA/sleep_loopqa.sh $MPIRUN $NPOPT $NPROC $NWCHEM $INPUTFILE 2> $ERRORFILE 1> $OUTPUTFILE
|
||||
fi
|
||||
runstatus=$?
|
||||
else
|
||||
$MPIRUN $NPOPT $NPROC $NWCHEM $INPUTFILE >& $OUTPUTFILE
|
||||
$MPIRUN $NPOPT $NPROC $NWCHEM $INPUTFILE 2> $ERRORFILE 1> $OUTPUTFILE
|
||||
runstatus=$?
|
||||
fi
|
||||
else
|
||||
$NWCHEM $INPUTFILE >& $OUTPUTFILE
|
||||
$NWCHEM $INPUTFILE 2> $ERRORFILE 1> $OUTPUTFILE
|
||||
runstatus=$?
|
||||
fi
|
||||
[ -f $OUTPUTFILE ] && cp $OUTPUTFILE $TESTOUTPUTS/$OUTPUTFILE
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue