Add -d switch to test AsmWriter as well
authorChris Lattner <sabre@nondot.org>
Fri, 3 May 2002 18:31:30 +0000 (18:31 +0000)
committerChris Lattner <sabre@nondot.org>
Fri, 3 May 2002 18:31:30 +0000 (18:31 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2452 91177308-0d34-0410-b5e6-96231b3b80d8

test/Assembler/Makefile

index 674b2b33ff971bef34384d751cb17a0a1b8aa34b..2e571b299681dbcdca16946a05df22b79ed39ca8 100644 (file)
@@ -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) $@ )