diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-09-09 14:51:48 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2015-09-09 14:51:48 +0200 |
commit | 8a9870ed59225972de389b7b4a494a57390bff1b (patch) | |
tree | 280788395cb1895bb2367c931b94c6fe711426ea /tests/function/call/test.sh | |
parent | 7a2f5753a12a68e87f8556f6e833710f147533b2 (diff) |
Add initial support for function calls: $func(a b c)
Now it is just a stub that prints the function name and its argument.
Currently only single argument can be passed (no value pack support
yet).
Diffstat (limited to 'tests/function/call/test.sh')
-rwxr-xr-x | tests/function/call/test.sh | 3 |
1 files changed, 3 insertions, 0 deletions
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 - |