aboutsummaryrefslogtreecommitdiff
path: root/shell/hush_test/hush-quoting/squote_in_varexp.tests
diff options
context:
space:
mode:
Diffstat (limited to 'shell/hush_test/hush-quoting/squote_in_varexp.tests')
-rwxr-xr-xshell/hush_test/hush-quoting/squote_in_varexp.tests4
1 files changed, 4 insertions, 0 deletions
diff --git a/shell/hush_test/hush-quoting/squote_in_varexp.tests b/shell/hush_test/hush-quoting/squote_in_varexp.tests
index a2d05a246..4afc52107 100755
--- a/shell/hush_test/hush-quoting/squote_in_varexp.tests
+++ b/shell/hush_test/hush-quoting/squote_in_varexp.tests
@@ -1,6 +1,10 @@
x=yz
echo ${x#'y'}
echo "${x#'y'}"
+echo ${x#"y"}
+echo "${x#"y"}"
echo ${x%'z'}
echo "${x%'z'}"
+echo ${x%"z"}
+echo "${x%"z"}"
echo Ok:$?