1*a96ef450SBaptiste Daroussin#!/bin/sh 2*a96ef450SBaptiste Daroussin# $Id: run_test.sh,v 1.1 2020/03/20 12:08:00 tom Exp $ 3*a96ef450SBaptiste Daroussin############################################################################## 4*a96ef450SBaptiste Daroussin# Copyright (c) 2020 Thomas E. Dickey # 5*a96ef450SBaptiste Daroussin# # 6*a96ef450SBaptiste Daroussin# Permission is hereby granted, free of charge, to any person obtaining a # 7*a96ef450SBaptiste Daroussin# copy of this software and associated documentation files (the "Software"), # 8*a96ef450SBaptiste Daroussin# to deal in the Software without restriction, including without limitation # 9*a96ef450SBaptiste Daroussin# the rights to use, copy, modify, merge, publish, distribute, distribute # 10*a96ef450SBaptiste Daroussin# with modifications, sublicense, and/or sell copies of the Software, and to # 11*a96ef450SBaptiste Daroussin# permit persons to whom the Software is furnished to do so, subject to the # 12*a96ef450SBaptiste Daroussin# following conditions: # 13*a96ef450SBaptiste Daroussin# # 14*a96ef450SBaptiste Daroussin# The above copyright notice and this permission notice shall be included in # 15*a96ef450SBaptiste Daroussin# all copies or substantial portions of the Software. # 16*a96ef450SBaptiste Daroussin# # 17*a96ef450SBaptiste Daroussin# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # 18*a96ef450SBaptiste Daroussin# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # 19*a96ef450SBaptiste Daroussin# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL # 20*a96ef450SBaptiste Daroussin# THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # 21*a96ef450SBaptiste Daroussin# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # 22*a96ef450SBaptiste Daroussin# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER # 23*a96ef450SBaptiste Daroussin# DEALINGS IN THE SOFTWARE. # 24*a96ef450SBaptiste Daroussin# # 25*a96ef450SBaptiste Daroussin# Except as contained in this notice, the name(s) of the above copyright # 26*a96ef450SBaptiste Daroussin# holders shall not be used in advertising or otherwise to promote the sale, # 27*a96ef450SBaptiste Daroussin# use or other dealings in this Software without prior written # 28*a96ef450SBaptiste Daroussin# authorization. # 29*a96ef450SBaptiste Daroussin############################################################################## 30*a96ef450SBaptiste Daroussin 31*a96ef450SBaptiste Daroussinfailed() { 32*a96ef450SBaptiste Daroussin echo "? $*" >&2 33*a96ef450SBaptiste Daroussin exit 1 34*a96ef450SBaptiste Daroussin} 35*a96ef450SBaptiste Daroussin 36*a96ef450SBaptiste Daroussin: ${DIALOG=./dialog} 37*a96ef450SBaptiste DaroussinCONFIG=samples 38*a96ef450SBaptiste DaroussinINPUTS=inputs.rc 39*a96ef450SBaptiste DaroussinOUTPUT=output.rc 40*a96ef450SBaptiste Daroussin 41*a96ef450SBaptiste Daroussin[ $# != 0 ] && CONFIG="$1" 42*a96ef450SBaptiste Daroussin 43*a96ef450SBaptiste Daroussin[ -f "$DIALOG" ] || failed "no such file: $DIALOG" 44*a96ef450SBaptiste Daroussin[ -d "$CONFIG" ] || failed "no such directory: $CONFIG" 45*a96ef450SBaptiste Daroussin 46*a96ef450SBaptiste Daroussinfor rcfile in $CONFIG/*.rc 47*a96ef450SBaptiste Daroussindo 48*a96ef450SBaptiste Daroussin echo "** $rcfile" 49*a96ef450SBaptiste Daroussin DIALOGRC="$rcfile" $DIALOG --create-rc $OUTPUT 50*a96ef450SBaptiste Daroussin sed -e '/^#/d' "$OUTPUT" >"$INPUTS" 51*a96ef450SBaptiste Daroussin mv -f $INPUTS $OUTPUT 52*a96ef450SBaptiste Daroussin sed -e '/^#/d' "$rcfile" >"$INPUTS" 53*a96ef450SBaptiste Daroussin diff -u $INPUTS $OUTPUT | \ 54*a96ef450SBaptiste Daroussin sed -e "s,$INPUTS,$rcfile," \ 55*a96ef450SBaptiste Daroussin -e "s,$OUTPUT,$rcfile-test," 56*a96ef450SBaptiste Daroussindone 57*a96ef450SBaptiste Daroussin 58*a96ef450SBaptiste Daroussinrm -f $INPUTS $OUTPUT 59