]> git.donarmstrong.com Git - biopieces.git/blob - bp_test/test_all
added warnings to bp_test
[biopieces.git] / bp_test / test_all
1 #!/bin/bash
2
3 source "$BP_DIR/bp_test/lib/test.sh"
4
5 if [ -f $log_file ]; then
6     rm $log_file
7 fi
8
9 test_perl
10 test_perl_module "Inline"
11 test_perl_module "JSON::XS"
12 test_perl_module "SVG"
13 test_perl_module "Bit::Vector"
14 test_perl_module "Time::HiRes"
15 test_ruby
16 test_ruby_gem "gnuplot"
17 test_ruby_gem "narray"
18 test_aux_program "blastall"
19 test_aux_program "blat"
20 test_aux_program "bwa"
21 test_aux_program "bowtie"
22 test_aux_program "formatdb"
23 test_aux_program "gnuplot"
24 test_aux_program "idba"
25 test_aux_program "muscle"
26 test_aux_program "mummer"
27 test_aux_program "mysql"
28 test_aux_program "prodigal"
29 test_aux_program "Ray"
30 test_aux_program "scan_for_matches"
31 test_aux_program "uclust"
32 test_aux_program "velveth"
33 test_aux_program "velvetg"
34 test_aux_program "vmatch"
35
36 count=0
37 time0=`date +%s`
38
39 for i in `ls "$BP_DIR/bp_test/test/"`; do
40     "$BP_DIR/bp_test/test/$i"
41     count=$[ $count + 1 ]
42 done
43
44 time1=`date +%s`
45 time=$[ $time1 - $time0 ]
46
47 test_count=`cat $log_file | wc -l | sed "s/ //g"`
48 test_ok=`grep -c "OK" $log_file`
49 test_fail=`grep -c "FAIL" $log_file`
50 test_warn=`grep -c "WARNING" $log_file`
51
52 report="Biopieces tested: $count  Tests run: $test_count  OK: $test_ok  FAIL: $test_fail  WARNING: $test_warn  Time: $time secs"
53
54 if (($test_fail > 0)); then
55     echo_red "$report"
56 elif (($test_warn > 0)); then
57     echo_yellow "$report"
58 else
59     echo_green "$report"
60 fi