From: Chris Lattner Date: Fri, 3 May 2002 18:31:30 +0000 (+0000) Subject: Add -d switch to test AsmWriter as well X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=2e055ed08c991594e965b28f196e1fa949fda297;p=oota-llvm.git Add -d switch to test AsmWriter as well git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2452 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Assembler/Makefile b/test/Assembler/Makefile index 674b2b33ff9..2e571b29968 100644 --- a/test/Assembler/Makefile +++ b/test/Assembler/Makefile @@ -12,5 +12,5 @@ all:: $(addprefix Output/, $(TESTS:%.ll=%.tbc)) Output/%.tbc: %.ll $(LAS) Output/.dir @echo "======== Assembling $<" - $(LAS) -f $< -o $@ || \ + $(LAS) -d -f $< -o $@ > /dev/null 2>&1 || \ ( rm -f $@; $(FAILURE) $@ )