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