diff options
author | June McEnroe <june@causal.agency> | 2019-01-10 20:19:51 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2019-01-10 20:19:51 -0500 |
commit | fb2b96be043fdba3ab70f256cad339b848b8c30f (patch) | |
tree | 8f5147243cfcebc7fdc1a616aeadd88e9bfe207b /bin/cash/tests/expansion/cmdsubst3.0 | |
parent | Remove funcs (diff) | |
download | src-fb2b96be043fdba3ab70f256cad339b848b8c30f.tar.gz src-fb2b96be043fdba3ab70f256cad339b848b8c30f.zip |
Remove cash/tests
Diffstat (limited to '')
-rw-r--r-- | bin/cash/tests/expansion/cmdsubst3.0 | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/bin/cash/tests/expansion/cmdsubst3.0 b/bin/cash/tests/expansion/cmdsubst3.0 deleted file mode 100644 index f8a5d3c3..00000000 --- a/bin/cash/tests/expansion/cmdsubst3.0 +++ /dev/null @@ -1,23 +0,0 @@ -# $FreeBSD: releng/12.0/bin/sh/tests/expansion/cmdsubst3.0 218819 2011-02-18 20:37:09Z jilles $ - -unset LC_ALL -export LC_CTYPE=en_US.ISO8859-1 - -e= -for i in 0 1 2 3; do - for j in 0 1 2 3 4 5 6 7; do - for k in 0 1 2 3 4 5 6 7; do - case $i$j$k in - 000) continue ;; - esac - e="$e\n\\$i$j$k" - done - done -done -e1=$(printf "$e") -e2="$(printf "$e")" -[ "${#e1}" = 510 ] || echo length bad -[ "$e1" = "$e2" ] || echo e1 != e2 -[ "$e1" = "$(printf "$e")" ] || echo quoted bad -IFS= -[ "$e1" = $(printf "$e") ] || echo unquoted bad |