Licensing: Add copyright for Mark Wooding
[adns] / regress / m1test
... / ...
CommitLineData
1#!/bin/bash
2# usage: m1test <name> <initfile> [<initflags>] <queryargs>'
3# test recording script
4#
5# This file is part of adns, which is
6# Copyright (C) 1997-2000,2003,2006,2014 Ian Jackson
7# Copyright (C) 2014 Mark Wooding
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.)
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 3, 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
25set -e
26
27: ${srcdir=.}
28if [ $# -lt 3 ]
29then
30 echo >&2 \
31'usage: m1test <name> <initfile> [-<initflags>] ["<"]
32 [=<hrecord-command-args>] <queryargs>
33("<" means read input from case-<name>.in)'
34 exit 1
35fi
36
37case="$srcdir/case-$1"; shift
38initfile="$1"; shift
39
40hrecord="./adnstest_record"
41
42case "$1" in
43-*) initflags="$1"; shift
44esac
45
46if test "x$1" = "x<"
47then
48 shift; exec <"$case.in"
49fi
50
51case "$1" in
52=*) hrecord="`echo \"$1\" | sed -e 's/^=//'`"; shift
53esac
54
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
66queryargs="$*"
67
68initstring="`cat $srcdir/init-$initfile.text`"
69xinitflagsf=$srcdir/$program-xinitflags.text
70if test -f $xinitflagsf
71then
72 useinitflags="$initflags $(cat $xinitflagsf)";
73else
74 useinitflags="$initflags /"
75fi
76
77echo $program $initfile $initflags >"$case.sys"
78echo "$queryargs" >>"$case.sys"
79
80EF_DISABLE_BANNER=1
81export EF_DISABLE_BANNER
82
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"
94set +e
95ADNS_TEST_OUT_FD=3 3>>"$case.sys" >&4 2>&5 \
96 $hrecord $useinitflags"$initstring" $queryargs
97rc=$?
98set -e
99
100echo "rc=$rc" >&4
101exec 4>&-
102exec 5>&-
103
104wait $tee_out
105wait $tee_err
106
107echo "exit status: $rc"