aboutsummaryrefslogtreecommitdiffstats
path: root/shell_cmds/sh/tests/parameters/env1.0
diff options
context:
space:
mode:
Diffstat (limited to 'shell_cmds/sh/tests/parameters/env1.0')
-rw-r--r--shell_cmds/sh/tests/parameters/env1.011
1 files changed, 11 insertions, 0 deletions
diff --git a/shell_cmds/sh/tests/parameters/env1.0 b/shell_cmds/sh/tests/parameters/env1.0
new file mode 100644
index 0000000..0842856
--- /dev/null
+++ b/shell_cmds/sh/tests/parameters/env1.0
@@ -0,0 +1,11 @@
+# $FreeBSD: head/bin/sh/tests/parameters/env1.0 222957 2011-06-10 22:42:00Z jilles $
+
+export key='must contain this'
+unset x
+r=$(ENV="\${x?\$key}" ${SH} -i +m 2>&1 >/dev/null <<\EOF
+exit 0
+EOF
+) && case $r in
+*"$key"*) true ;;
+*) false ;;
+esac