From 5d4159ba88001b52b814f13210421b8efd5cf9f2 Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Fri, 19 Jun 2015 06:17:00 -0700 Subject: Test ifa macro. * Makefile (TEST_OUT): Include .tl files. (tst/%.out): New rule variant, from .tl prerequisite. * tests/012/ifa.expected: New file. * tests/012/ifa.tl: New file. --- Makefile | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 31d11f2f..7db7cbd0 100644 --- a/Makefile +++ b/Makefile @@ -256,8 +256,10 @@ endif TESTS_TMP := txr.test.out TESTS_OUT := $(addprefix tst/,\ - $(patsubst %.txr,%.out,\ - $(shell find -H tests -name '*.txr' | sort))) + $(patsubst %.tl,%.out,\ + $(patsubst %.txr,%.out,\ + $(shell find -H tests \ + \( -name '*.txr' -o -name '*.tl' \) | sort)))) TESTS_OK := $(TESTS_OUT:.out=.ok) .PHONY: tests @@ -299,6 +301,12 @@ tst/%.out: %.txr $(TXR) $(TXR_DBG_OPTS) $(TXR_OPTS) $< $(TXR_ARGS) > $(TESTS_TMP)) $(V)mv $(TESTS_TMP) $@ +tst/%.out: %.tl + $(call ABBREV,TXR) + $(V)mkdir -p $(dir $@) + $(V)$(TXR) $(TXR_DBG_OPTS) $(TXR_OPTS) $< $(TXR_ARGS) > $(TESTS_TMP) + $(V)mv $(TESTS_TMP) $@ + %.ok: %.out $(V)diff -u $(patsubst tst/%.out,%.expected,$<) $< $(V)touch $@ -- cgit v1.2.3