aboutsummaryrefslogtreecommitdiff
path: root/shell/hush_test/hush-bugs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* hush: tighten up "for" variable name check.Denis Vlasenko2009-04-102-0/+35
| | | | | | | | | | Add TODOs. Disable redir4.right part where we differ from bash. It is not a bug per standards. Add a few tests, one is in hush-bugs section: and_or_and_backgrounding.right. It will likely bite users in real world usage.
* hush: expand quote3.tests and move from hush-bugs to hush-parsingDenis Vlasenko2008-06-182-11/+0
|
* hush: fix "for a in; do echo 'I should never run'; done" bugDenis Vlasenko2008-06-172-4/+0
|
* move glob_and_assign.tests from hush-bugs to hush-globDenis Vlasenko2008-06-172-16/+0
|
* hush: continue fixing quoting and subst: fix glob_and_assign.tests.Denis Vlasenko2008-06-172-19/+15
|
* hush: delete hush-bugs/glob_and_vars.tests for realDenis Vlasenko2008-06-161-2/+0
|
* hush: fix hush-bugs/glob_and_vars.tests testcase:Denis Vlasenko2008-06-164-2/+5
| | | | | | | | | | | | | | globbing is now done _after_ variable/`cmd` substitution function old new delta expand_strvec_to_strvec 7 353 +346 expand_variables 1348 1383 +35 add_string_to_strings - 28 +28 globhack 114 - -114 done_word 778 579 -199 ------------------------------------------------------------------------------ (add/remove: 1/1 grow/shrink: 2/1 up/down: 409/-313) Total: 96 bytes
* hush: fix a bug where we were requiring semicolon here: (cmd;)Denis Vlasenko2008-06-142-3/+0
| | | | | | | | | | | also fix a bug where after error prompt is not shown. function old new delta parse_stream 1612 1638 +26 parse_and_run_stream 361 375 +14 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 2/0 up/down: 40/0) Total: 40 bytes
* hush: add support for ':'; create testsuite entriesDenis Vlasenko2008-06-146-0/+26
| | | | | | | text data bss dec hex filename 809569 612 7044 817225 c7849 busybox_old 809528 612 7044 817184 c7820 busybox_unstripped
* hush: fix yet another falloutDenis Vlasenko2008-06-104-13/+0
| | | | | hush: move fixed testsuites out of hush-bugs/*
* hush: add yet another bug to testsuite :(Denis Vlasenko2008-06-082-0/+7
|
* add expected outputMike Frysinger2007-12-251-0/+2
|
* hush: make syntax error messages a bit more usefulDenis Vlasenko2007-05-232-3/+0
|
* hush: prepare testsuite for new, fixed error message formatDenis Vlasenko2007-05-231-1/+1
|
* hush: fix job control with eval /bin/external_progDenis Vlasenko2007-05-232-0/+3
| | | | | | hush: fix parsing of unterminated "str with no EOL hush: improved make_string() (smaller, faster, needs less RAM) hush: renamed several functions
* hush: make process substitution configurable; add a testcaseDenis Vlasenko2007-05-202-0/+4
|
* hush: fix expansion of quoted $VAR, $* and $@Denis Vlasenko2007-05-164-14/+0
|
* hush: fix incorrect processing of echo "'$var'".Denis Vlasenko2007-05-162-3/+0
| | | | | | hush: rename map[] and MAP_xxx, making them easier to understand. hush: move testcase (which now passes) from hush-bugs to hush-parsing
* hush: move testsuite files from hush-bugs to hush-parsingDenis Vlasenko2007-05-144-8/+0
| | | | (as these bugs are now fixed)
* hush: more fixes to variable expansion, more testcasesDenis Vlasenko2007-05-141-0/+0
|
* hush: move towards more correct variable expansionDenis Vlasenko2007-05-142-0/+20
| | | | | hush: fix a few cases in FOR v IN ... construct unfortunately, code growth is big - ~600 bytes
* hush: fix '{ false; echo $?; }' bug.Denis Vlasenko2007-05-138-0/+16
hush: expand testsuite. variable expansion is still very broken