Licensing: Delete FSF street address
[adns] / regress / r1test
... / ...
CommitLineData
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 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
24set -e
25: ${srcdir=.}
26mrc=1
27trap 'exit $mrc' 0
28
29casename="$1"
30case="$srcdir/case-$casename"
31ocase="output-$casename"
32
33exec 4<"$case.sys"
34read <&4 program initfile initflags
35read <&4 queryargs
36
37initstring="`cat $srcdir/init-$initfile.text`"
38xinitflagsf=$srcdir/$program-xinitflags.text
39if test -f $xinitflagsf
40then
41 initflags="$initflags `cat $xinitflagsf`";
42else
43 initflags="$initflags /"
44fi
45
46rm -f $ocase.*
47
48EF_DISABLE_BANNER=1
49export EF_DISABLE_BANNER
50
51if test -f "$case.in"
52then
53 exec <"$case.in"
54else
55 exec </dev/null
56fi
57
58playback=./${program}_playback
59if test ! -f $playback
60then
61 printf "SKIPPED-$casename "
62 mrc=5
63 exit
64fi
65
66set +e
67ADNS_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
70rc=$?
71set -e
72
73if [ "$rc" = 5 ]
74then
75 printf "SKIPPED-$casename "
76 mrc=5
77 exit
78fi
79
80echo "rc=$rc" >>$ocase.out
81
82failed=false
83for part in err out
84do
85 if diff -u -- "$case.$part" "$ocase.$part"
86 then
87 :
88 else
89 failwhy="$failwhy WRONG OUTPUT"
90 fi
91done
92
93cat <&4 >"$ocase.leftover"
94if egrep . /dev/null "$ocase.leftover"
95then
96 failwhy="$failwhy EXITED EARLY"
97fi
98
99if [ "x$failwhy" != x ]
100then
101 scremain="`wc -l <\"$ocase.leftover\"`"
102 echo >&2 "FAILED $case -$failwhy - lines of syscall remaining $scremain"
103 mrc=2
104 exit
105fi
106
107printf "$casename "
108mrc=0