summary refs log tree commit diff
path: root/bin/1sh/tests/expansion/length6.0
diff options
context:
space:
mode:
Diffstat (limited to 'bin/1sh/tests/expansion/length6.0')
-rw-r--r--bin/1sh/tests/expansion/length6.08
1 files changed, 0 insertions, 8 deletions
diff --git a/bin/1sh/tests/expansion/length6.0 b/bin/1sh/tests/expansion/length6.0
deleted file mode 100644
index cf65ea4c..00000000
--- a/bin/1sh/tests/expansion/length6.0
+++ /dev/null
@@ -1,8 +0,0 @@
-# $FreeBSD: releng/12.1/bin/sh/tests/expansion/length6.0 220903 2011-04-20 22:24:54Z jilles $
-
-x='!@#$%^&*()[]'
-[ ${#x} = 12 ] || echo bad 1
-[ "${#x}" = 12 ] || echo bad 2
-IFS=2
-[ ${#x} = 1 ] || echo bad 3
-[ "${#x}" = 12 ] || echo bad 4