From fb311eb7757fbb6f8a6440148eb6124ef4ea5632 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 11 May 2003 18:38:25 +0000 Subject: [PATCH] Allow llx tests as well git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6088 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/LLC/Makefile | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/test/LLC/Makefile b/test/LLC/Makefile index 4fb94efba31..3c07cd08839 100644 --- a/test/LLC/Makefile +++ b/test/LLC/Makefile @@ -7,11 +7,16 @@ include $(LEVEL)/test/Makefile.tests # Only .ll tests here. C tests are run via Makefile.singlesrc above. # -TESTS := $(wildcard *.ll) +LL_TESTS := $(wildcard *.ll) +LLX_TESTS := $(wildcard *.llx) -all:: $(addprefix Output/, $(filter-out %.c, $(TESTS:%.ll=%.ts))) +all:: $(addprefix Output/, $(LL_TESTS:%.ll=%.ts)) +all:: $(addprefix Output/, $(LLX_TESTS:%.llx=%.llx.out)) Output/%.ts: Output/%.bc $(LLC) Output/.dir @echo "======== Compiling $< ==========" $(LLC) -f $< -o $@ || \ ( rm -f $@; $(FAILURE) $@ ) + +Output/%.llx.out: %.llx Output/.dir $(LLC) + -$(TESTRUNR) $<