aboutsummaryrefslogtreecommitdiff
path: root/make/tests/step9_interop.mk
blob: 0e44a88a8c9bad5fc3c1bbbc889ef0eac232fcd9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
INTERACTIVE =

include tests/common.mk
include step9_interop.mk

$(info Testing trivial macros)
$(call assert_eq,7,$(call test_rep, (make* "7") ))
$(call assert_eq,"XaY XbY XcY",$(call test_rep, (make* "\"$(foreach v,a b c,X$(v)Y)\"") ))
$(call assert_eq,(2 3 4),$(call test_rep, (make* "($(foreach v,1 2 3,$(call gmsl_plus,1,$(v))))") ))


.PHONY: all
all:
	@echo "All tests completed"