summary refs log tree commit diff
path: root/bin/1sh/tests/expansion/local1.0
diff options
context:
space:
mode:
Diffstat (limited to 'bin/1sh/tests/expansion/local1.0')
-rw-r--r--bin/1sh/tests/expansion/local1.028
1 files changed, 28 insertions, 0 deletions
diff --git a/bin/1sh/tests/expansion/local1.0 b/bin/1sh/tests/expansion/local1.0
new file mode 100644
index 00000000..722e376f
--- /dev/null
+++ b/bin/1sh/tests/expansion/local1.0
@@ -0,0 +1,28 @@
+# $FreeBSD: releng/12.1/bin/sh/tests/expansion/local1.0 238468 2012-07-15 10:19:43Z jilles $
+
+run_test() {
+	w='@ @'
+	check() {
+		[ "$v" = "$w" ] || echo "Expected $w got $v"
+	}
+
+	local v=$w
+	check
+
+	HOME=/known/value
+	check() {
+		[ "$v" = ~ ] || echo "Expected $HOME got $v"
+	}
+
+	local v=~
+	check
+
+	check() {
+		[ "$v" = "x:$HOME" ] || echo "Expected x:$HOME got $v"
+	}
+
+	local v=x:~
+	check
+}
+
+run_test