aboutsummaryrefslogtreecommitdiffstats
path: root/shell_cmds/sh/tests/builtins/local3.0
diff options
context:
space:
mode:
Diffstat (limited to 'shell_cmds/sh/tests/builtins/local3.0')
-rw-r--r--shell_cmds/sh/tests/builtins/local3.026
1 files changed, 26 insertions, 0 deletions
diff --git a/shell_cmds/sh/tests/builtins/local3.0 b/shell_cmds/sh/tests/builtins/local3.0
new file mode 100644
index 0000000..f1d135d
--- /dev/null
+++ b/shell_cmds/sh/tests/builtins/local3.0
@@ -0,0 +1,26 @@
+# $FreeBSD: head/bin/sh/tests/builtins/local3.0 251797 2013-06-15 22:22:03Z jilles $
+
+f() {
+ local "$@"
+ set -a
+ x=7
+ case $- in
+ *a*) : ;;
+ *) echo In-function \$- bad
+ esac
+ [ "$x" = 7 ] || echo In-function \$x bad
+}
+x=1
+case $- in
+*a*) echo Initial \$- bad
+esac
+f x -
+case $- in
+*a*) echo Intermediate \$- bad
+esac
+[ "$x" = 1 ] || echo Intermediate \$x bad
+f - x
+case $- in
+*a*) echo Final \$- bad
+esac
+[ "$x" = 1 ] || echo Final \$x bad