update copyright dates
[adns] / regress / m1test
CommitLineData
09aee00b 1#!/bin/bash
89435c42 2# usage: m1test <name> <initfile> [<initflags>] <queryargs>'
3# test recording script
4#
39f45e7e 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.)
89435c42 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 2, 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# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
e3324da1 24
25set -e
3c5796f7 26
27if [ $# -lt 3 ]
28then
eb485710 29 echo >&2 \
d024926c 30'usage: m1test <name> <initfile> [-<initflags>] ["<"]
31 [=<hrecord-command-args>] <queryargs>
32("<" means read input from case-<name>.in)'
3c5796f7 33 exit 1
34fi
35
e9d74277 36case="case-$1"; shift
37initfile="$1"; shift
2d5cce62 38
09aee00b 39hrecord="./adnstest_record"
eb485710 40
2d5cce62 41case "$1" in
42-*) initflags="$1"; shift
43esac
44
d024926c 45if test "x$1" = "x<"
46then
47 shift; exec <"$case.in"
48fi
49
eb485710 50case "$1" in
51=*) hrecord="`echo \"$1\" | sed -e 's/^=//'`"; shift
52esac
53
09aee00b 54if test ! -f "$hrecord" -a -f "${hrecord}_record"
55then
56 case "$hrecord" in
57 /*) program="$hrecord" ;;
58 *) program="./$hrecord" ;;
59 esac
60 hrecord="${program}_record"
61else
62 program="$(echo "$hrecord" | sed -e 's/ .*//; s/_record$//')"
63fi
64
e3324da1 65queryargs="$*"
e3324da1 66
e9d74277 67initstring="`cat init-$initfile.text`"
09aee00b 68xinitflagsf=$program-xinitflags.text
69if test -f $xinitflagsf
70then
71 useinitflags="$initflags $(cat $xinitflagsf)";
72else
73 useinitflags="$initflags /"
74fi
e3324da1 75
09aee00b 76echo $program $initfile $initflags >"$case.sys"
e9d74277 77echo "$queryargs" >>"$case.sys"
e3324da1 78
8f3b71b0 79EF_DISABLE_BANNER=1
80export EF_DISABLE_BANNER
81
09aee00b 82rm -f pipe.out pipe.err
83mknod pipe.out p
84mknod pipe.err p
85tee <pipe.out "$case.out" &
86tee_out=$!
87tee <pipe.err "$case.err" &
88tee_err=$!
89exec 4>pipe.out
90exec 5>pipe.err
91
92echo running hrecord $initflags "... $queryargs"
e9d74277 93set +e
09aee00b 94ADNS_TEST_OUT_FD=3 3>>"$case.sys" >&4 2>&5 \
95 $hrecord $useinitflags"$initstring" $queryargs
e9d74277 96rc=$?
97set -e
98
09aee00b 99echo "rc=$rc" >&4
100exec 4>&-
101exec 5>&-
102
103wait $tee_out
104wait $tee_err
7ca1d685 105
e9d74277 106echo "exit status: $rc"