File: run_all_tests_unix.sh

package info (click to toggle)
libterralib 4.0.0-4
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 170,672 kB
  • sloc: cpp: 254,330; ansic: 82,910; makefile: 808; sh: 80; xml: 37
file content (51 lines) | stat: -rw-r--r-- 1,153 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/bin/bash

echo Starting test procedure...

cd bin
echo The current directory is:
pwd

echo Cleanning garbage files...
find -name "*.tif" -exec rm -f {} \;
find -name "*.ilk" -exec rm -f {} \;
find -name "*.pdb" -exec rm -f {} \;
find -name "*.exe" -exec rm -f {} \;
echo Cleanning done.

AT_LEAST_ONE_TEST_FAILED=0
LOGFILE=/tmp/pditestsunit.log

for i in $( ls TePDI* ); do
  if [ -x $i ]; then
    echo Now running $i test ...
    
    TEST_FAILED=0
    rm -f $LOGFILE
    
    ./$i &> $LOGFILE
    
    if [ "$?" -ne "0" ]; then 
      TEST_FAILED=1
      AT_LEAST_ONE_TEST_FAILED=1
      echo Test $i failed.
      
      echo ----------------------------------------------------------------
      cat $LOGFILE
      echo ----------------------------------------------------------------       
    else
      echo Test $i OK.
    fi
  fi
done

if [ $AT_LEAST_ONE_TEST_FAILED -ne "0" ]; then
  echo ----------------------------------------------------------------
  echo Test procedure finished with errors.
  cd ..
  exit 1
else
  echo Test procedure finished with no errors.
  cd ..
  exit 0
fi