Page MenuHomec4science

akantu_diff.sh
No OneTemporary

File Metadata

Created
Mon, May 13, 16:58

akantu_diff.sh

#!/bin/bash
./$1 > $1.lastout 2> $1.errout
ret=$?
if [ $ret -eq 0 ]
then
diff $1.lastout $2 && echo "Test passed!!!"
else
echo "Test Failed!!"
exit $ret
fi

Event Timeline