Fix path problem
authorChris Lattner <sabre@nondot.org>
Wed, 14 May 2003 18:44:22 +0000 (18:44 +0000)
committerChris Lattner <sabre@nondot.org>
Wed, 14 May 2003 18:44:22 +0000 (18:44 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6208 91177308-0d34-0410-b5e6-96231b3b80d8

test/TestRunner.sh

index f7d4bbf56cafec6b2ea90345a2a4b349bbd49d12..fbf174c2eeb5c3a36a58694a885a368a91a6c36e 100755 (executable)
@@ -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