chiark / gitweb /
update version
[adns] / regress / m1test
CommitLineData
09aee00b 1#!/bin/bash
89435c42 2# usage: m1test <name> <initfile> [<initflags>] <queryargs>'
3# test recording script
4#
5# This file is
6# Copyright (C) 1998-2000 Ian Jackson <ian@davenant.greenend.org.uk>
7#
8# It is part of adns, which is
9# Copyright (C) 1997-2000 Ian Jackson <ian@davenant.greenend.org.uk>
c6826df6 10# Copyright (C) 1999-2000 Tony Finch <dot@dotat.at>
89435c42 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
14# the Free Software Foundation; either version 2, or (at your option)
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
23# along with this program; if not, write to the Free Software Foundation,
24# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
e3324da1 25
26set -e
3c5796f7 27
28if [ $# -lt 3 ]
29then
eb485710 30 echo >&2 \
d024926c 31'usage: m1test <name> <initfile> [-<initflags>] ["<"]
32 [=<hrecord-command-args>] <queryargs>
33("<" means read input from case-<name>.in)'
3c5796f7 34 exit 1
35fi
36
e9d74277 37case="case-$1"; shift
38initfile="$1"; shift
2d5cce62 39
09aee00b 40hrecord="./adnstest_record"
eb485710 41
2d5cce62 42case "$1" in
43-*) initflags="$1"; shift
44esac
45
d024926c 46if test "x$1" = "x<"
47then
48 shift; exec <"$case.in"
49fi
50
eb485710 51case "$1" in
52=*) hrecord="`echo \"$1\" | sed -e 's/^=//'`"; shift
53esac
54
09aee00b 55if test ! -f "$hrecord" -a -f "${hrecord}_record"
56then
57 case "$hrecord" in
58 /*) program="$hrecord" ;;
59 *) program="./$hrecord" ;;
60 esac
61 hrecord="${program}_record"
62else
63 program="$(echo "$hrecord" | sed -e 's/ .*//; s/_record$//')"
64fi
65
e3324da1 66queryargs="$*"
e3324da1 67
e9d74277 68initstring="`cat init-$initfile.text`"
09aee00b 69xinitflagsf=$program-xinitflags.text
70if test -f $xinitflagsf
71then
72 useinitflags="$initflags $(cat $xinitflagsf)";
73else
74 useinitflags="$initflags /"
75fi
e3324da1 76
09aee00b 77echo $program $initfile $initflags >"$case.sys"
e9d74277 78echo "$queryargs" >>"$case.sys"
e3324da1 79
8f3b71b0 80EF_DISABLE_BANNER=1
81export EF_DISABLE_BANNER
82
09aee00b 83rm -f pipe.out pipe.err
84mknod pipe.out p
85mknod pipe.err p
86tee <pipe.out "$case.out" &
87tee_out=$!
88tee <pipe.err "$case.err" &
89tee_err=$!
90exec 4>pipe.out
91exec 5>pipe.err
92
93echo running hrecord $initflags "... $queryargs"
e9d74277 94set +e
09aee00b 95ADNS_TEST_OUT_FD=3 3>>"$case.sys" >&4 2>&5 \
96 $hrecord $useinitflags"$initstring" $queryargs
e9d74277 97rc=$?
98set -e
99
09aee00b 100echo "rc=$rc" >&4
101exec 4>&-
102exec 5>&-
103
104wait $tee_out
105wait $tee_err
7ca1d685 106
e9d74277 107echo "exit status: $rc"