summary refs log tree commit diff
path: root/bin/1sh/tests/builtins/local1.0
diff options
context:
space:
mode:
Diffstat (limited to 'bin/1sh/tests/builtins/local1.0')
-rw-r--r--bin/1sh/tests/builtins/local1.013
1 files changed, 0 insertions, 13 deletions
diff --git a/bin/1sh/tests/builtins/local1.0 b/bin/1sh/tests/builtins/local1.0
deleted file mode 100644
index 53b54b52..00000000
--- a/bin/1sh/tests/builtins/local1.0
+++ /dev/null
@@ -1,13 +0,0 @@
-# $FreeBSD: releng/12.1/bin/sh/tests/builtins/local1.0 238469 2012-07-15 10:22:13Z jilles $
-# A commonly used but non-POSIX builtin.
-
-f() {
-	local x
-	x=2
-	[ "$x" = 2 ]
-}
-x=1
-f || exit 3
-[ "$x" = 1 ] || exit 3
-f || exit 3
-[ "$x" = 1 ] || exit 3