Skip to content

Commit

Permalink
used stderr everywhere
Browse files Browse the repository at this point in the history
  • Loading branch information
edoapra committed Jun 24, 2023
1 parent e055443 commit be3b2b0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions QA/runtests.mpi.unix
Original file line number Diff line number Diff line change
Expand Up @@ -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
#
Expand Down

0 comments on commit be3b2b0

Please sign in to comment.