summary refs log tree commit diff
path: root/bin/1sh/tests/expansion/length1.0
diff options
context:
space:
mode:
Diffstat (limited to 'bin/1sh/tests/expansion/length1.0')
-rw-r--r--bin/1sh/tests/expansion/length1.012
1 files changed, 12 insertions, 0 deletions
diff --git a/bin/1sh/tests/expansion/length1.0 b/bin/1sh/tests/expansion/length1.0
new file mode 100644
index 00000000..9f3b9443
--- /dev/null
+++ b/bin/1sh/tests/expansion/length1.0
@@ -0,0 +1,12 @@
+# $FreeBSD: releng/12.1/bin/sh/tests/expansion/length1.0 219611 2011-03-13 16:20:38Z jilles $
+
+v=abcd
+[ "${#v}" = 4 ] || echo '${#v} wrong'
+v=$$
+[ "${#$}" = "${#v}" ] || echo '${#$} wrong'
+[ "${#!}" = 0 ] || echo '${#!} wrong'
+set -- 01 2 3 4 5 6 7 8 9 10 11 12 0013
+[ "${#1}" = 2 ] || echo '${#1} wrong'
+[ "${#13}" = 4 ] || echo '${#13} wrong'
+v=$0
+[ "${#0}" = "${#v}" ] || echo '${#0} wrong'