aboutsummaryrefslogtreecommitdiffstats
path: root/shell_cmds/sh/tests/parameters/positional5.0
diff options
context:
space:
mode:
Diffstat (limited to 'shell_cmds/sh/tests/parameters/positional5.0')
-rw-r--r--shell_cmds/sh/tests/parameters/positional5.014
1 files changed, 14 insertions, 0 deletions
diff --git a/shell_cmds/sh/tests/parameters/positional5.0 b/shell_cmds/sh/tests/parameters/positional5.0
new file mode 100644
index 0000000..80ef805
--- /dev/null
+++ b/shell_cmds/sh/tests/parameters/positional5.0
@@ -0,0 +1,14 @@
+# $FreeBSD: head/bin/sh/tests/parameters/positional5.0 268576 2014-07-12 21:54:11Z jilles $
+
+i=1
+r=0
+while [ $i -lt $((0x100000000)) ]; do
+ t=
+ eval t=\${$i-x}
+ case $t in
+ x) ;;
+ *) echo "Problem with \${$i}" >&2; r=1 ;;
+ esac
+ i=$((i + 0x10000000))
+done
+exit $r