📄 m1test
字号:
#!/bin/bash# usage: m1test <name> <initfile> [<initflags>] <queryargs>'# test recording script## This file is part of adns, which is# Copyright (C) 1997-2000,2003,2006 Ian Jackson# Copyright (C) 1999-2000,2003,2006 Tony Finch# Copyright (C) 1991 Massachusetts Institute of Technology# (See the file INSTALL for full details.)# # This program is free software; you can redistribute it and/or modify# it under the terms of the GNU General Public License as published by# the Free Software Foundation; either version 2, or (at your option)# any later version.# # This program is distributed in the hope that it will be useful,# but WITHOUT ANY WARRANTY; without even the implied warranty of# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the# GNU General Public License for more details.# # You should have received a copy of the GNU General Public License# along with this program; if not, write to the Free Software Foundation,# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. set -eif [ $# -lt 3 ]then echo >&2 \'usage: m1test <name> <initfile> [-<initflags>] ["<"] [=<hrecord-command-args>] <queryargs>("<" means read input from case-<name>.in)' exit 1ficase="case-$1"; shiftinitfile="$1"; shifthrecord="./adnstest_record"case "$1" in-*) initflags="$1"; shiftesacif test "x$1" = "x<"then shift; exec <"$case.in"ficase "$1" in=*) hrecord="`echo \"$1\" | sed -e 's/^=//'`"; shiftesacif test ! -f "$hrecord" -a -f "${hrecord}_record"then case "$hrecord" in /*) program="$hrecord" ;; *) program="./$hrecord" ;; esac hrecord="${program}_record"else program="$(echo "$hrecord" | sed -e 's/ .*//; s/_record$//')"fiqueryargs="$*"initstring="`cat init-$initfile.text`"xinitflagsf=$program-xinitflags.textif test -f $xinitflagsfthen useinitflags="$initflags $(cat $xinitflagsf)";else useinitflags="$initflags /"fiecho $program $initfile $initflags >"$case.sys"echo "$queryargs" >>"$case.sys"EF_DISABLE_BANNER=1export EF_DISABLE_BANNERrm -f pipe.out pipe.errmknod pipe.out pmknod pipe.err ptee <pipe.out "$case.out" &tee_out=$!tee <pipe.err "$case.err" &tee_err=$!exec 4>pipe.outexec 5>pipe.errecho running hrecord $initflags "... $queryargs"set +eADNS_TEST_OUT_FD=3 3>>"$case.sys" >&4 2>&5 \ $hrecord $useinitflags"$initstring" $queryargsrc=$?set -eecho "rc=$rc" >&4exec 4>&-exec 5>&-wait $tee_outwait $tee_errecho "exit status: $rc"
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -