summaryrefslogtreecommitdiffstats
path: root/tests/exportfunc3.sub
diff options
context:
space:
mode:
Diffstat (limited to 'tests/exportfunc3.sub')
-rw-r--r--tests/exportfunc3.sub25
1 files changed, 25 insertions, 0 deletions
diff --git a/tests/exportfunc3.sub b/tests/exportfunc3.sub
new file mode 100644
index 0000000..7a7aa26
--- /dev/null
+++ b/tests/exportfunc3.sub
@@ -0,0 +1,25 @@
+# test function names that cannot be exported
+
+unset foo # remove from environment if necessary
+
+function foo=bar
+{
+ echo equals-1
+}
+
+export -f 'foo=bar'
+echo status: $?
+
+foo\=bar
+printenv | grep 'foo=bar'
+${THIS_SH} -c 'foo\=bar 2>/dev/null'
+
+function /bin/echo
+{
+ echo bad echo
+}
+
+/bin/echo foo
+export -f '/bin/echo'
+
+${THIS_SH} -c '/bin/echo bar'