chiark / gitweb /
@@ -23,12 +23,13 @@
[adns] / regress / m1test
CommitLineData
e3324da1 1#!/bin/sh
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>
10# Copyright (C) 1999 Tony Finch <dot@dotat.at>
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
2d5cce62 30 echo >&2 'usage: m1test <name> <initfile> [<initflags>] <queryargs>'
3c5796f7 31 exit 1
32fi
33
e9d74277 34case="case-$1"; shift
35initfile="$1"; shift
2d5cce62 36
37case "$1" in
38-*) initflags="$1"; shift
39esac
40
e3324da1 41queryargs="$*"
e3324da1 42
e9d74277 43initstring="`cat init-$initfile.text`"
e3324da1 44
2d5cce62 45echo $initfile $initflags >"$case.sys"
e9d74277 46echo "$queryargs" >>"$case.sys"
e3324da1 47
8f3b71b0 48EF_DISABLE_BANNER=1
49export EF_DISABLE_BANNER
50
2d5cce62 51echo running hrecord $initflags "/... $queryargs"
e9d74277 52set +e
3c5796f7 53ADNS_TEST_OUT_FD=3 3>>"$case.sys" >"$case.out" 2>"$case.err" </dev/null \
2d5cce62 54 ./hrecord $initflags "/$initstring" $queryargs
e9d74277 55rc=$?
56set -e
57
7ca1d685 58echo "rc=$rc" >>$case.out
59
3c5796f7 60egrep . -- "$case.err" "$case.out"
e9d74277 61echo "exit status: $rc"