diff options
author | Chris Lattner <sabre@nondot.org> | 2003-05-14 18:39:57 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-05-14 18:39:57 +0000 |
commit | 9600e8d6374c15cb8ad082a99e7a0fcc213a982c (patch) | |
tree | ee8d7e89b75050e25c5a8ddca85f44c0a0f8b0f9 | |
parent | 36b8645e9bd0a6b3a3270f57a20ecd1b07eea0aa (diff) | |
download | bcm5719-llvm-9600e8d6374c15cb8ad082a99e7a0fcc213a982c.tar.gz bcm5719-llvm-9600e8d6374c15cb8ad082a99e7a0fcc213a982c.zip |
Generalize the script a bit
llvm-svn: 6206
-rwxr-xr-x | llvm/test/TestRunner.sh | 28 |
1 files changed, 21 insertions, 7 deletions
diff --git a/llvm/test/TestRunner.sh b/llvm/test/TestRunner.sh index a9f27ac96f9..f7d4bbf56ca 100755 --- a/llvm/test/TestRunner.sh +++ b/llvm/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! ********************" ) |