mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-28 19:31:58 +00:00
Allow llx tests as well
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6088 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
6e51bfa2ea
commit
fb311eb775
@ -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) $<
|
||||
|
Loading…
Reference in New Issue
Block a user