Failure.sh moved up a level

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1569 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2002-01-23 20:39:56 +00:00
parent 7aeed26bc4
commit fa149909ab
3 changed files with 4 additions and 4 deletions

View File

@ -31,9 +31,9 @@ Output/%.opt: % $(LAS) $(LDIS) $(LOPT) Output/.dir
Output/%.mc: Output/%.bc $(LLC)
@echo "======== Generating machine instructions for $<"
$(LLC) -f $(LLCFLAGS) $< > $@ || \
( rm -f $@; ./Failure.sh $@ )
( rm -f $@; $(FAILURE) $@ )
Output/%.s: Output/%.bc $(LLC)
@echo "======== Generating assembly code for $<"
$(LLC) -f $(LLCFLAGS) $< -o $@ || \
( rm -f $@; ./Failure.sh $@ )
( rm -f $@; $(FAILURE) $@ )

View File

@ -27,5 +27,5 @@ echo "======== Running assembler/disassembler test on $1"
rm $1.[bl][cl].[12]
touch Output/$1.asmdis
) || ./Failure.sh "$1 ASM/DIS"
) || ../Failure.sh "$1 ASM/DIS"

View File

@ -30,4 +30,4 @@ echo "======== Running optimizier test on $1"
rm $1.bc.[1234] $1.ll.[1234]
touch Output/$1.opt # Success!
)|| ./Failure.sh "$1 Optimizer"
)|| ../Failure.sh "$1 Optimizer"