summaryrefslogtreecommitdiffstats
path: root/build/pymake/tests/call.mk
diff options
context:
space:
mode:
Diffstat (limited to 'build/pymake/tests/call.mk')
-rw-r--r--build/pymake/tests/call.mk12
1 files changed, 12 insertions, 0 deletions
diff --git a/build/pymake/tests/call.mk b/build/pymake/tests/call.mk
new file mode 100644
index 000000000..9eeb7e00c
--- /dev/null
+++ b/build/pymake/tests/call.mk
@@ -0,0 +1,12 @@
+test = $0
+reverse = $2 $1
+twice = $1$1
+sideeffect = $(shell echo "called$1:" >>dummyfile)
+
+all:
+ test "$(call test)" = "test"
+ test "$(call reverse,1,2)" = "2 1"
+# expansion happens *before* substitution, thank sanity
+ test "$(call twice,$(sideeffect))" = ""
+ test `cat dummyfile` = "called:"
+ @echo TEST-PASS