mirror of
https://github.com/nwchemgit/nwchem.git
synced 2026-07-28 22:25:48 -04:00
used stderr everywhere
This commit is contained in:
parent
e055443a33
commit
be3b2b07ed
1 changed files with 4 additions and 4 deletions
|
|
@ -394,19 +394,19 @@ sync
|
|||
# know what we are doing (i.e. above this script) and simply use that
|
||||
# verbatim. Set MPIRUN_PATH for this purpose, its value is transfered
|
||||
# to MPIRUN at some point in this script.
|
||||
$MPIRUN $NWCHEM $INPUTFILE >& $TESTOUTPUTS/$OUTPUTFILE
|
||||
$MPIRUN $NWCHEM $INPUTFILE 2> $TESTOUTPUTS/$ERRORFILE 1> $TESTOUTPUTS/$OUTPUTFILE
|
||||
runstatus=$?
|
||||
else
|
||||
# In the case of standard MPI we construct the appropriate command here.
|
||||
if [ -z $USE_SLEEPLOOP ]; then
|
||||
$MPIRUN $NPOPT $NPROC $NWCHEM $INPUTFILE >& ${TESTOUTPUTS}/${OUTPUTFILE}
|
||||
$MPIRUN $NPOPT $NPROC $NWCHEM $INPUTFILE 2> ${TESTOUTPUTS}/${ERRORFILE} 1> ${TESTOUTPUTS}/${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=$?
|
||||
fi
|
||||
else
|
||||
$NWCHEM $INPUTFILE >& $TESTOUTPUTS/$OUTPUTFILE
|
||||
$NWCHEM $INPUTFILE 2> $TESTOUTPUTS/$ERRORFILE 1> $TESTOUTPUTS/$OUTPUTFILE
|
||||
runstatus=$?
|
||||
fi
|
||||
#
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue