From dec2d799e696fad79e253ae5c2f115a6a4551bfb Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Wed, 14 May 2003 18:39:57 +0000 Subject: Generalize the script a bit git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6206 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/TestRunner.sh | 28 +++++++++++++++++++++------- 1 file changed, 21 insertions(+), 7 deletions(-) (limited to 'test/TestRunner.sh') diff --git a/test/TestRunner.sh b/test/TestRunner.sh index a9f27ac96f..f7d4bbf56c 100755 --- a/test/TestRunner.sh +++ b/test/TestRunner.sh @@ -5,20 +5,34 @@ # immediately after a "RUN:" string. # # This runner recognizes and replaces the following strings in the command: -# %s - Replaced with the input name of the program # +# %s - Replaced with the input name of the program, or the program to +# execute, as appropriate. +# + +FILENAME=$1 +SUBST=$1 +OUTPUT=$FILENAME.out + +if test $# != 1; then + # If more than one parameter is passed in, there must be three parameters: + # The filename to read from (already processed), the command used to execute, + # and the file to output to. + SUBST=$2 + OUTPUT=$3 +fi -grep 'RUN:' $1 | sed "s/^.*RUN:\(.*\)$/\1/g;s/%s/$1/g" > Output/$1.script -OUTPUT=Output/$1.out +SCRIPT=Output/$OUTPUT.script +grep 'RUN:' $FILENAME | sed "s|^.*RUN:\(.*\)$|\1|g;s|%s|$SUBST|g" > $SCRIPT -/bin/sh Output/$1.script > $OUTPUT 2>&1 || ( - echo "******************** TEST '$1' FAILED! ********************" +/bin/sh $SCRIPT > $OUTPUT 2>&1 || ( + echo "******************** TEST '$FILENAME' FAILED! ********************" echo "Command: " - cat Output/$1.script + cat $SCRIPT echo "Output:" cat $OUTPUT rm $OUTPUT - echo "******************** TEST '$1' FAILED! ********************" + echo "******************** TEST '$FILENAME' FAILED! ********************" ) -- cgit v1.2.3