Skip to content

Commit

Permalink
Tests: Use system echo to avoid -e compatibility issues
Browse files Browse the repository at this point in the history
  • Loading branch information
jaseg committed Jul 26, 2015
1 parent 0f8c9a3 commit 9df9e3b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/runtest.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ OUTFILE=$TEST.$TOOL.out
$TOOL ../ribosome.$EXT $TEST.$EXT.dna >$OUTFILE

if diff $OUTFILE $TEST.check >$LOGFILE; then
echo -n "[\033[92mOK\033[0m] "
env echo -en "[\033[92mOK\033[0m] "
rm $LOGFILE $OUTFILE
else
echo -n "[\033[91mFAIL\033[0m ($LOGFILE)] "
env echo -en "[\033[91mFAIL\033[0m ($LOGFILE)] "
fi

0 comments on commit 9df9e3b

Please sign in to comment.