Former-commit-id: 115a1955c5883ffd0909cb05e887f70fa561b6e6 Former-commit-id: 5e6be182d5a3ec910f5deed27014227f34bd4745
29 lines
537 B
Bash
Executable File
29 lines
537 B
Bash
Executable File
#!/usr/bin/env tcsh -f
|
|
|
|
setenv Verbose 0
|
|
|
|
setenv ORG_HOME `dirname $0`/../../..
|
|
source $ORG_HOME/scripts/csh_init.sh
|
|
|
|
echo "+ testing CDS"
|
|
|
|
setenv TMP_CLEANUP 0
|
|
setenv PASS1_SPEEDUP 1
|
|
setenv PASS1_SLOWDOWN 0
|
|
setenv PASS1_BLASTX_FILTER_NBMAX 5
|
|
|
|
`dirname $0`/../bin/go_cds.sh test.fst test.db > test.bak
|
|
|
|
diff -q test.bak test.ref >& /dev/null
|
|
|
|
set stat = $status
|
|
|
|
if ($stat == 0) then
|
|
echo "+ $VTC[3]CDS test Ok$VTC[1]"
|
|
\rm -r test.bak test.tmp test.db/core/*.fst.p??
|
|
else
|
|
echo "* $VTC[2]CDS test Failure$VTC[1]"
|
|
endif
|
|
|
|
exit $stat
|