aboutsummaryrefslogtreecommitdiff
path: root/shell/hush_test/hush-vars/var_posix1.tests
AgeCommit message (Collapse)Author
2010-05-22hush: fix more obscure ${var%...} casesDenys Vlasenko
function old new delta add_till_closing_paren 313 359 +46 builtin_exit 48 47 -1 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
2010-05-21hush: fix a=abc; c=c; echo ${a%${c}}Denys Vlasenko
function old new delta expand_vars_to_list 2229 2302 +73 add_till_closing_paren 286 313 +27 handle_dollar 623 574 -49 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 2/1 up/down: 100/-49) Total: 51 bytes Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
2009-04-26hush: fix SEGV in % expansionDenis Vlasenko
function old new delta expand_variables 2203 2217 +14
2009-04-19hush: fix handling of } which is not a closing one in { cmd; }Denis Vlasenko
function old new delta parse_stream 2176 2302 +126 builtin_unset 381 387 +6
2009-04-10hush: tweak testsDenis Vlasenko
2009-04-09add test cases for parameter substitution with unset/null stringsMike Frysinger
2009-04-07implement support for parameter substitution via #/% operatorsMike Frysinger