diff options
Diffstat (limited to 'shell_cmds/sh/tests/builtins/local2.0')
| -rw-r--r-- | shell_cmds/sh/tests/builtins/local2.0 | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/shell_cmds/sh/tests/builtins/local2.0 b/shell_cmds/sh/tests/builtins/local2.0 new file mode 100644 index 0000000..ed78d93 --- /dev/null +++ b/shell_cmds/sh/tests/builtins/local2.0 @@ -0,0 +1,17 @@ +# $FreeBSD: head/bin/sh/tests/builtins/local2.0 251797 2013-06-15 22:22:03Z jilles $ + +f() { + local - + set -a + case $- in + *a*) : ;; + *) echo In-function \$- bad + esac +} +case $- in +*a*) echo Initial \$- bad +esac +f +case $- in +*a*) echo Final \$- bad +esac |
