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, 0 insertions, 28 deletions
diff --git a/bin/1sh/tests/expansion/local1.0 b/bin/1sh/tests/expansion/local1.0
deleted file mode 100644
index 722e376f..00000000
--- a/bin/1sh/tests/expansion/local1.0
+++ /dev/null
@@ -1,28 +0,0 @@
-# $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