File: runtests

package info (click to toggle)
sip-tester 1%3A3.7.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,932 kB
  • sloc: cpp: 29,383; xml: 13,436; ansic: 2,381; python: 2,218; sh: 505; makefile: 13
file content (51 lines) | stat: -rwxr-xr-x 1,256 bytes parent folder | download | duplicates (2)
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/sh
# This regression test is a part of SIPp.
# Author: Walter Doekes, OSSO B.V., 2014

# Don't run from anywhere else than here!
cd `dirname "$0"`

# Cleanup test remnants.
find . -name '*.log' -print -delete
echo

# Export custom location SIPP binary if supplied.
export SIPP
# Set flag that we want verbose exit codes.
export VERBOSE_EXITSTATUS=1

echo "== RUNNING TESTS =="
ok=0
fail=0
unexpected_ok=0
expected_fail=0
skip=0
for path in github-*; do
    if test -x $path/run; then
        $path/run
        ret=$?
        case $ret in
          0) ok=$((ok+1)) ;;
          1) fail=$((fail+1)) ;;
          2) unexpected_ok=$((unexpected_ok+1)) ;;
          3) expected_fail=$((expected_fail+1)) ;;
          4) skip=$((skip+1)) ;;
          *) echo "Unexpected return value: $ret" >&2 && exit 1
        esac
    fi
done

echo "=="
printf "%d success" "$ok"
test $skip -ne 0 && printf ", %d skipped" "$skip"
test $fail -ne 0 && printf ", %d FAILURE" "$fail"
test $unexpected_ok -ne 0 && printf ", %d UNEXPECTED SUCCESS" "$unexpected_ok"
test $expected_fail -ne 0 && printf ", %d expected failure" "$expected_fail"
echo

# Return our status.
test $fail -ne 0 && exit 1
test $unexpected_ok -ne 0 && exit 2
exit 0

# vim: set ts=8 sw=4 sts=4 et ai: