- remove TOK_NOSUBST, mark the token itself instead - get_tok_str(); mask out SYM_FIELD & update uses - next(): optimize (~5% faster with tcc -E) - tok_flags: remove some redundancy - parse_define(): do not remove spaces around '##' and after '#' and mark macros with '##' as MACRO_JOIN to avoid unnecessary call to macro_twosharps(mstr): - next_nomacro(): removed, next_nomacro1(): renamed to next_nomacro() - next_argstream(): cleanup & new function peek_file() - macro_subst_tok(): handle special macros (__DATE__ etc.) like normal macros if they are #defined - -DPP_DEBUG : more structured output - pp_error(): better preprocessor expression error message - tcctok.h: sort basic keywords (somehow) - testspp/Makefile: generate .expect with 'make testspp.##+' - tcc.c: tcc -E -o file : put unixy LFs also on windows
55 lines
1.2 KiB
Makefile
55 lines
1.2 KiB
Makefile
#
|
|
# credits: 01..13.c from the pcc cpp-tests suite
|
|
#
|
|
|
|
TOP = ../..
|
|
include $(TOP)/Makefile
|
|
SRC = $(TOPSRC)/tests/pp
|
|
VPATH = $(SRC)
|
|
|
|
files = $(patsubst %.$1,%.test,$(notdir $(wildcard $(SRC)/*.$1)))
|
|
TESTS = $(call files,c) $(call files,S)
|
|
|
|
all test testspp.all: $(sort $(TESTS))
|
|
|
|
DIFF_OPTS = -Nu -b
|
|
|
|
# Filter source directory in warnings/errors (out-of-tree builds)
|
|
FILTER = 2>&1 | sed 's,$(SRC)/,,g'
|
|
|
|
%.test: %.c %.expect
|
|
@echo PPTest $* ...
|
|
-@$(TCC) -E -P $< $(FILTER) >$*.output 2>&1 ; \
|
|
diff $(DIFF_OPTS) $(SRC)/$*.expect $*.output \
|
|
&& rm -f $*.output
|
|
|
|
%.test: %.S %.expect
|
|
@echo PPTest $* ...
|
|
-@$(TCC) -E -P $< $(FILTER) >$*.output 2>&1 ; \
|
|
diff $(DIFF_OPTS) $(SRC)/$*.expect $*.output \
|
|
&& rm -f $*.output
|
|
|
|
testspp.%: %.test ;
|
|
|
|
# generate .expect file with tcc, e.g. "make testspp.17+"
|
|
testspp.%+: %.c
|
|
$(TCC) -E -P $*.[cS] -o $*.expect
|
|
|
|
# automatically generate .expect files with gcc:
|
|
%.expect: # %.c
|
|
gcc -E -P $*.[cS] >$*.expect 2>&1
|
|
|
|
# tell make not to delete
|
|
.PRECIOUS: %.expect
|
|
|
|
clean:
|
|
rm -f *.output
|
|
|
|
02.test : DIFF_OPTS += -w
|
|
# 15.test : DIFF_OPTS += -I"^XXX:"
|
|
|
|
# diff options:
|
|
# -b ighore space changes
|
|
# -w ighore all whitespace
|
|
# -B ignore blank lines
|
|
# -I <RE> ignore lines matching RE
|