aboutsummaryrefslogtreecommitdiff
path: root/shell/hush_test
AgeCommit message (Collapse)Author
2008-03-02msh: create testsuite (based on hush one)Denis Vlasenko
hush: add TODO (doesn't know ":" command)
2008-02-10hush: small fixes to docs/testsuiteDenis Vlasenko
2008-02-10hush: reinstate `cmd` handling for NOMMU (with fat big warning).Denis Vlasenko
hush: fix a case where none of pipe members could be started because of fork failure hush: rename functions: xxx_real -> xxx hush: try to add a bit more of vfork-friendliness hush: add rudimentary design docs hush: add TODO (newly discovered bug with globbing)
2007-12-25add expected outputMike Frysinger
2007-11-23hush: fix $ expansion in redirections, add testcase for thatDenis Vlasenko
2007-11-23hush: plug memory leakDenis Vlasenko
2007-06-13hush: fix read builtin to not read ahead past eol and to not useDenis Vlasenko
insane amounts of stack. Testsuite updated.
2007-05-25hush: rework variable storage and environment handling.Denis Vlasenko
More that -100 bytes of code + memory leak plugged. Added a testcase for it.
2007-05-24hush: improve 2 testsuite testsDenis Vlasenko
2007-05-24hush: add 2 tests for correct syntax error reportingDenis Vlasenko
2007-05-23hush: make syntax error messages a bit more usefulDenis Vlasenko
2007-05-23hush: prepare testsuite for new, fixed error message formatDenis Vlasenko
2007-05-23hush: fix job control with eval /bin/external_progDenis Vlasenko
hush: fix parsing of unterminated "str with no EOL hush: improved make_string() (smaller, faster, needs less RAM) hush: renamed several functions
2007-05-23hush: fix a bit different instance of "No EOL" bug,Denis Vlasenko
add testsuite for that. Expand another testsuite.
2007-05-23fix execute bit on hush-misc/shift.testsDenis Vlasenko
2007-05-21shells: update README and testsuite. environment memory leakDenis Vlasenko
needs to be fixed - and documented!
2007-05-20hush: fix shift + $0 bug; add testcaseDenis Vlasenko
2007-05-20hush: make process substitution configurable; add a testcaseDenis Vlasenko
2007-05-16hush: fix expansion of quoted $VAR, $* and $@Denis Vlasenko
2007-05-16hush: fix incorrect processing of echo "'$var'".Denis Vlasenko
hush: rename map[] and MAP_xxx, making them easier to understand. hush: move testcase (which now passes) from hush-bugs to hush-parsing
2007-05-14hush: move testsuite files from hush-bugs to hush-parsingDenis Vlasenko
(as these bugs are now fixed)
2007-05-14hush: more fixes to variable expansion, more testcasesDenis Vlasenko
2007-05-14hush: move towards more correct variable expansionDenis Vlasenko
hush: fix a few cases in FOR v IN ... construct unfortunately, code growth is big - ~600 bytes
2007-05-13hush: fix '{ false; echo $?; }' bug.Denis Vlasenko
hush: expand testsuite. variable expansion is still very broken
2007-05-11hush: reinstate hush_test, add testcases for process substDenis Vlasenko
2007-05-11hush: fix bug in interactive shell introduced yesterdayDenis Vlasenko
hush: fix `process subst` (2 bugs) NB: will delete and re-add hush_test in order to change file modes
2007-05-10hush: fix "unterminated last line loops forever" bugDenis Vlasenko
hush: add testsuite infrastructure