aboutsummaryrefslogtreecommitdiffstats
path: root/shell_cmds/sh/tests/builtins/cd2.0
diff options
context:
space:
mode:
Diffstat (limited to 'shell_cmds/sh/tests/builtins/cd2.0')
-rw-r--r--shell_cmds/sh/tests/builtins/cd2.016
1 files changed, 16 insertions, 0 deletions
diff --git a/shell_cmds/sh/tests/builtins/cd2.0 b/shell_cmds/sh/tests/builtins/cd2.0
new file mode 100644
index 0000000..b7d39f3
--- /dev/null
+++ b/shell_cmds/sh/tests/builtins/cd2.0
@@ -0,0 +1,16 @@
+# $FreeBSD: head/bin/sh/tests/builtins/cd2.0 216019 2010-11-28 22:49:58Z jilles $
+set -e
+
+L=$(getconf PATH_MAX / 2>/dev/null) || L=4096
+[ "$L" -lt 100000 ] 2>/dev/null || L=4096
+L=$((L+100))
+T=$(mktemp -d ${TMPDIR:-/tmp}/sh-test.XXXXXX)
+trap 'rm -rf ${T}' 0
+cd $T
+D=$T
+while [ ${#D} -lt $L ]; do
+ mkdir veryverylongdirectoryname
+ cd veryverylongdirectoryname
+ D=$D/veryverylongdirectoryname
+done
+[ $(pwd | wc -c) -eq $((${#D} + 1)) ] # +\n