
Former-commit-id: 93fac7a70052d06c2a12bf8af59820c653edd31b Former-commit-id: 0869fdad0f550941a0f78f1e4c57f4fcdb3f6076
18 lines
225 B
Bash
Executable File
18 lines
225 B
Bash
Executable File
#!/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
|
|
|
|
|