summaryrefslogtreecommitdiff
path: root/tests/TESTrun.sh
blob: 656974dd7c7fb6f878b0b81f35073ff6d18e12ba (plain)
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
52
53
54
55
56
57
58
59
60
61
62
63
#!/bin/sh

mkdir -p NEW
mkdir -p DIFF
passed=0
failed=0

# first run any specific tests.
for i in *.sh
do
  case $i in TEST*.sh) continue;; esac

  if sh ./$i >DIFF/$i.result
  then
      echo $i: passed.
      rm -f DIFF/$i.result
      passed=$(($passed + 1))
  else
      echo $i: failed.
      failed=$(($failed + 1))
  fi          
done 

echo $passed >.passed
echo $failed >.failed

# now run typical tests
cat TESTLIST | while read name input output options
do
  case $name in
      \#*) continue;;
      '') continue;;
  esac

  if ./TESTonce $name $input $output "$options"
  then
      echo $name: passed.
      rm -f DIFF/$output.diff
      passed=$(($passed + 1))
      echo $passed >.passed
  else
      echo $name: failed.
      failed=$(($failed + 1))
      echo $failed >.failed
  fi
done 

# I hate shells with their stupid, useless subshells.
passed=`cat .passed`
failed=`cat .failed`

# exit with number of failing tests.
echo 
echo
printf "%4u tests failed\n" $failed
printf "%4u tests passed\n" $passed
echo
echo
exit $failed