Files
annotate/detectors/cds/test/go_test.sh

23 lines
355 B
Bash
Raw Normal View History

#!/bin/csh -f
echo "+ [testing CDS]"
setenv PASS1_SPEEDUP 1
setenv PASS1_SLOWDOWN 0
setenv PASS1_BLASTX_FILTER_NBMAX 50
../bin/go_cds.sh test.fst > test.bak
diff -q test.bak test.ref >& /dev/null
set stat = $status
if ($stat == 0) then
echo '+ CDS test Ok'
\rm -r test.bak
else
echo '* CDS test Failure'
endif
exit $stat