aboutsummaryrefslogtreecommitdiffstats
path: root/shell_cmds/sh/tests/builtins/cd7.0
diff options
context:
space:
mode:
Diffstat (limited to 'shell_cmds/sh/tests/builtins/cd7.0')
-rw-r--r--shell_cmds/sh/tests/builtins/cd7.015
1 files changed, 15 insertions, 0 deletions
diff --git a/shell_cmds/sh/tests/builtins/cd7.0 b/shell_cmds/sh/tests/builtins/cd7.0
new file mode 100644
index 0000000..d4cae39
--- /dev/null
+++ b/shell_cmds/sh/tests/builtins/cd7.0
@@ -0,0 +1,15 @@
+# $FreeBSD: head/bin/sh/tests/builtins/cd7.0 222381 2011-05-27 20:01:46Z jilles $
+
+set -e
+cd /usr/bin
+[ "$PWD" = /usr/bin ]
+CDPATH=/:
+cd .
+[ "$PWD" = /usr/bin ]
+cd ./
+[ "$PWD" = /usr/bin ]
+cd ..
+[ "$PWD" = /usr ]
+cd /usr/bin
+cd ../
+[ "$PWD" = /usr ]