diff options
author | Denis Vlasenko | 2008-04-12 22:55:33 +0000 |
---|---|---|
committer | Denis Vlasenko | 2008-04-12 22:55:33 +0000 |
commit | 033424a213739edb0dbe3f572bc22825b1c17d7b (patch) | |
tree | 35b84a6b3202e10f7acdbde2ecd765ef47e48249 /shell | |
parent | 9bc80d7062a01aa310be0729c095ba6b652c4735 (diff) | |
download | busybox-033424a213739edb0dbe3f572bc22825b1c17d7b.zip busybox-033424a213739edb0dbe3f572bc22825b1c17d7b.tar.gz |
ash: add testsuite entry for POSIX-mandated ${var#word} ${var##word}
${var%word} ${var%%word}
Diffstat (limited to 'shell')
-rw-r--r-- | shell/ash_test/ash-vars/var_posix1.right | 10 | ||||
-rwxr-xr-x | shell/ash_test/ash-vars/var_posix1.tests | 13 |
2 files changed, 23 insertions, 0 deletions
diff --git a/shell/ash_test/ash-vars/var_posix1.right b/shell/ash_test/ash-vars/var_posix1.right new file mode 100644 index 0000000..013b223 --- /dev/null +++ b/shell/ash_test/ash-vars/var_posix1.right @@ -0,0 +1,10 @@ +abcdcd +abcdcd +abcdcd +cdcd +babcdcd +ababcd +ababcd +ababcd +abab +ababcdc diff --git a/shell/ash_test/ash-vars/var_posix1.tests b/shell/ash_test/ash-vars/var_posix1.tests new file mode 100755 index 0000000..a7c85cb --- /dev/null +++ b/shell/ash_test/ash-vars/var_posix1.tests @@ -0,0 +1,13 @@ +var=ababcdcd + +echo ${var#ab} +echo ${var#a*b} +echo ${var##ab} +echo ${var##a*b} +echo ${var#?} + +echo ${var%cd} +echo ${var%c*d} +echo ${var%%cd} +echo ${var%%c*d} +echo ${var%?} |