diff options
author | Chris Lattner <sabre@nondot.org> | 2003-05-14 18:44:22 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-05-14 18:44:22 +0000 |
commit | ec26d4d314a15166a34920de824969c0ec43960f (patch) | |
tree | 65242be91b1ef0439804ab41047f94a8df69697b /test/TestRunner.sh | |
parent | dec2d799e696fad79e253ae5c2f115a6a4551bfb (diff) | |
download | external_llvm-ec26d4d314a15166a34920de824969c0ec43960f.zip external_llvm-ec26d4d314a15166a34920de824969c0ec43960f.tar.gz external_llvm-ec26d4d314a15166a34920de824969c0ec43960f.tar.bz2 |
Fix path problem
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6208 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/TestRunner.sh')
-rwxr-xr-x | test/TestRunner.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/TestRunner.sh b/test/TestRunner.sh index f7d4bbf..fbf174c 100755 --- a/test/TestRunner.sh +++ b/test/TestRunner.sh @@ -12,7 +12,7 @@ FILENAME=$1 SUBST=$1 -OUTPUT=$FILENAME.out +OUTPUT=Output/$FILENAME.out if test $# != 1; then # If more than one parameter is passed in, there must be three parameters: @@ -22,7 +22,7 @@ if test $# != 1; then OUTPUT=$3 fi -SCRIPT=Output/$OUTPUT.script +SCRIPT=$OUTPUT.script grep 'RUN:' $FILENAME | sed "s|^.*RUN:\(.*\)$|\1|g;s|%s|$SUBST|g" > $SCRIPT |