summaryrefslogtreecommitdiffstats
path: root/build/pymake/tests/func-refs.mk
diff options
context:
space:
mode:
Diffstat (limited to 'build/pymake/tests/func-refs.mk')
-rw-r--r--build/pymake/tests/func-refs.mk11
1 files changed, 11 insertions, 0 deletions
diff --git a/build/pymake/tests/func-refs.mk b/build/pymake/tests/func-refs.mk
new file mode 100644
index 000000000..82ab17ba8
--- /dev/null
+++ b/build/pymake/tests/func-refs.mk
@@ -0,0 +1,11 @@
+unknown var = uval
+
+all:
+ test "$(subst a,b,value)" = "vblue"
+ test "${subst a,b,va)lue}" = "vb)lue"
+ test "$(subst /,\,ab/c)" = "ab\c"
+ test '$(subst a,b,\\#)' = '\\#'
+ test "$( subst a,b,value)" = ""
+ test "$(Subst a,b,value)" = ""
+ test "$(unknown var)" = "uval"
+ @echo TEST-PASS