Files
annotate/detectors/go_test.sh

18 lines
225 B
Bash
Raw Normal View History

#!/bin/csh -f
#
set dirs = ("normalize" "ir" "rrna" "trna" "cds")
echo -n "" > test.log
@ nerr = 0
foreach d ($dirs)
(cd $d/test && go_test.sh) |& tee -a test.log |& egrep '^\+|\*'
@ nerr += $status
end
exit $nerr