aboutsummaryrefslogtreecommitdiff
path: root/tests/function
diff options
context:
space:
mode:
Diffstat (limited to 'tests/function')
-rw-r--r--tests/function/call/buildfile15
-rw-r--r--tests/function/call/test.out7
-rwxr-xr-xtests/function/call/test.sh3
3 files changed, 25 insertions, 0 deletions
diff --git a/tests/function/call/buildfile b/tests/function/call/buildfile
new file mode 100644
index 0000000..93eba14
--- /dev/null
+++ b/tests/function/call/buildfile
@@ -0,0 +1,15 @@
+$identity()
+$identity (a)
+$identity (a b c)
+$identity(sub/dir{x y z})
+
+# Verify we can inhibit function call with quoting.
+#
+foo = FOO
+bar = BAR
+
+print $foo"($bar)"
+print "$foo"($bar)
+print "$foo""($bar)"
+
+./:
diff --git a/tests/function/call/test.out b/tests/function/call/test.out
new file mode 100644
index 0000000..abc5974
--- /dev/null
+++ b/tests/function/call/test.out
@@ -0,0 +1,7 @@
+identity()
+identity(a)
+identity(a b c)
+identity(sub/dir{x} sub/dir{y} sub/dir{z})
+FOOBAR
+FOOBAR
+FOOBAR
diff --git a/tests/function/call/test.sh b/tests/function/call/test.sh
new file mode 100755
index 0000000..b898b3c
--- /dev/null
+++ b/tests/function/call/test.sh
@@ -0,0 +1,3 @@
+#!/bin/sh
+
+valgrind -q b -q | diff -u test.out -