aboutsummaryrefslogtreecommitdiff
path: root/shell/hush_test/hush-test2/strops5.tests
blob: ee01e5c3060656bae9ac24e69da72c583f01cb5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
v='*.z'
[[ a.z = *.z ]]; echo 1:YES:$?
[[ a.z = "*".z ]]; echo 2:no:$?
[[ a.z == $v ]]; echo 3:YES:$?

# Buggy:
# the problem is that expansion rules of LHS and RHS of ~=
# should not be the same: in RHS, "$v" and "*" should escape metas
# (currently "$v" does not),
# but in LHS, they should _not_ do that
# (currently "*" does). Thus these cases fail:
#[[ a.z == "$v" ]]; echo 4:no:$?	# BUG: "$v" expands to *.z
#[[ "*".z == ?.z ]]; echo 5:YES:$?	# BUG: "*" expands to \*