Licensing: Update copyright dates for Ian Jackson
[adns] / regress / r1test
1 #!/bin/sh
2 # usage: r1test <testcasename>
3 # test execution script, for running one test
4 #
5 # This file is part of adns, which is
6 # Copyright (C) 1997-2000,2003,2006,2014 Ian Jackson
7 # Copyright (C) 1999-2000,2003,2006 Tony Finch
8 # Copyright (C) 1991 Massachusetts Institute of Technology
9 # (See the file INSTALL for full details.)
10 #
11 # This program is free software; you can redistribute it and/or modify
12 # it under the terms of the GNU General Public License as published by
13 # the Free Software Foundation; either version 3, or (at your option)
14 # any later version.
15 #
16 # This program is distributed in the hope that it will be useful,
17 # but WITHOUT ANY WARRANTY; without even the implied warranty of
18 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 # GNU General Public License for more details.
20 #
21 # You should have received a copy of the GNU General Public License
22 # along with this program; if not, write to the Free Software Foundation.
23
24 set -e
25 : ${srcdir=.}
26 mrc=1
27 trap 'exit $mrc' 0
28
29 casename="$1"
30 case="$srcdir/case-$casename"
31 ocase="output-$casename"
32
33 exec 4<"$case.sys"
34 read <&4 program initfile initflags
35 read <&4 queryargs
36
37 initstring="`cat $srcdir/init-$initfile.text`"
38 xinitflagsf=$srcdir/$program-xinitflags.text
39 if test -f $xinitflagsf
40 then
41 initflags="$initflags `cat $xinitflagsf`";
42 else
43 initflags="$initflags /"
44 fi
45
46 rm -f $ocase.*
47
48 EF_DISABLE_BANNER=1
49 export EF_DISABLE_BANNER
50
51 if test -f "$case.in"
52 then
53 exec <"$case.in"
54 else
55 exec </dev/null
56 fi
57
58 playback=./${program}_playback
59 if test ! -f $playback
60 then
61 printf "SKIPPED-$casename "
62 mrc=5
63 exit
64 fi
65
66 set +e
67 ADNS_TEST_REPORT_FD=3 ADNS_TEST_IN_FD=4 \
68 3>>"$ocase.report" 4<&4 >"$ocase.out" 2>"$ocase.err" \
69 $ADNS_TEST_DEBUG $playback $initflags"$initstring" $queryargs
70 rc=$?
71 set -e
72
73 if [ "$rc" = 5 ]
74 then
75 printf "SKIPPED-$casename "
76 mrc=5
77 exit
78 fi
79
80 echo "rc=$rc" >>$ocase.out
81
82 failed=false
83 for part in err out
84 do
85 if diff -u -- "$case.$part" "$ocase.$part"
86 then
87 :
88 else
89 failwhy="$failwhy WRONG OUTPUT"
90 fi
91 done
92
93 cat <&4 >"$ocase.leftover"
94 if egrep . /dev/null "$ocase.leftover"
95 then
96 failwhy="$failwhy EXITED EARLY"
97 fi
98
99 if [ "x$failwhy" != x ]
100 then
101 scremain="`wc -l <\"$ocase.leftover\"`"
102 echo >&2 "FAILED $case -$failwhy - lines of syscall remaining $scremain"
103 mrc=2
104 exit
105 fi
106
107 printf "$casename "
108 mrc=0