aboutsummaryrefslogtreecommitdiff
path: root/shell/ash_test/ash-vars/var_wordsplit_ifs2.tests
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2016-10-01 20:55:02 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2016-10-01 20:55:02 +0200
commit88ac97d02dfeb4d3bd9efda45ceb64608cfedd53 (patch)
treed6ce66f90972a00ff95f811bd10a34b89bb7ea6b /shell/ash_test/ash-vars/var_wordsplit_ifs2.tests
parentc4d4380a0700542796887b2e6dbd41e9a7916997 (diff)
downloadbusybox-88ac97d02dfeb4d3bd9efda45ceb64608cfedd53.tar.gz
ash: [EXPAND] Do not split quoted VSLENGTH and VSTRIM
Upstream patch: Date: Wed, 8 Oct 2014 15:42:08 +0800 [EXPAND] Do not split quoted VSLENGTH and VSTRIM Currently VSLENGTH and VSTRIM* are field-split even within quotes. This is obviously wrong. This patch fixes that. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell/ash_test/ash-vars/var_wordsplit_ifs2.tests')
-rwxr-xr-xshell/ash_test/ash-vars/var_wordsplit_ifs2.tests13
1 files changed, 13 insertions, 0 deletions
diff --git a/shell/ash_test/ash-vars/var_wordsplit_ifs2.tests b/shell/ash_test/ash-vars/var_wordsplit_ifs2.tests
new file mode 100755
index 000000000..47523549c
--- /dev/null
+++ b/shell/ash_test/ash-vars/var_wordsplit_ifs2.tests
@@ -0,0 +1,13 @@
+# 123 chars long
+a="\
+01234567890123456789\
+01234567890123456789\
+01234567890123456789\
+01234567890123456789\
+01234567890123456789\
+0123456789\
+0123456789\
+012"
+
+IFS=2; for v in ${#a}; do echo Unquoted:"<$v>"; done
+IFS=2; for v in "${#a}"; do echo Quoted:"<$v>"; done