aboutsummaryrefslogtreecommitdiff
path: root/shell/hush_test/hush-misc
AgeCommit message (Expand)Author
2009-06-03hush: add support for local builtinDenys Vlasenko
2009-05-23make compound.tests executableDenys Vlasenko
2009-05-23hush: fix problems with case in subshells and with "case esac"Denys Vlasenko
2009-05-21hush_test: add some pathological compound list testsMike Frysinger
2009-05-21hush_test: test for subshell function syntaxMike Frysinger
2009-05-21hush_test: add subshelled case testsMike Frysinger
2009-05-13TODO: add someDenys Vlasenko
2009-05-04hush: fix bug where in "var=val func" var's value is not visible in funcDenys Vlasenko
2009-05-02hush: fix multiple redirections of the same fd (bug 227)Denys Vlasenko
2009-04-26hush: nommu fix for function passingDenis Vlasenko
2009-04-20hush: export -n supportDenis Vlasenko
2009-04-20hush: add two testcasesDenis Vlasenko
2009-04-20hush: fix stdin of backgrounded pipe Denis Vlasenko
2009-04-19hush: fix handling of } which is not a closing one in { cmd; }Denis Vlasenko
2009-04-17hush: return builtin by Bayram Kurumahmut (kbayram AT ubicom.com)Denis Vlasenko
2009-04-10hush: add function testsDenis Vlasenko
2009-04-10hush: fix some TODOs. TODO in export builting: +250 bytes.Denis Vlasenko
2009-04-10hush: tighten up "for" variable name check.Denis Vlasenko
2009-04-10hush: readability improvements.Denis Vlasenko
2009-04-09hush: fix EXIT trap recursion case; check redirection failuresDenis Vlasenko
2009-04-08hush: more rodust detection of unterminated strings etc;Denis Vlasenko
2009-04-08hush: echo \2>file fixDenis Vlasenko
2009-04-07hush: fix heredoc expansion of $var and `cmd`Denis Vlasenko
2009-04-07add a pathological test case for here doc related to eof marker and other ugl...Mike Frysinger
2009-04-07hush: heredoc support, based on patch by Mike Frysinger (vapier AT gentoo.org)Denis Vlasenko
2009-04-06hush: fix "if false; then...fi" exitcode;Denis Vlasenko
2009-04-06make hush-misc/*.tests executableDenis Vlasenko
2009-04-06hush: fix a bunch of obscure while/until/continue bugsDenis Vlasenko
2009-04-06*.tests should be executableDenis Vlasenko
2009-04-06move hush-parsing/and-or.tests to hush-misc/*Denis Vlasenko
2009-04-06add tests for basic fd open/close/dupeMike Frysinger
2009-04-06fix redir1 tests -- usleep isnt standard in $PATHMike Frysinger
2009-04-04hush: fix "var=val >file" not creating fileDenis Vlasenko
2009-04-03hush: finally make `cmd` safe on NOMMUDenis Vlasenko
2009-04-03hush: improve parse_stream: does not require parsing context struct;Denis Vlasenko
2008-08-04hush: fix mishandling of a'b'c=fff as assignments. They are not.Denis Vlasenko
2008-07-31hush: fix "case ... in <newline> word)..."Denis Vlasenko
2008-07-29hush: small fix for repeated continue and fix for wrong loop depth countDenis Vlasenko
2008-07-29hush: fix break'ing out of {} and () groups; with testcaseDenis Vlasenko
2008-07-29hush: add #defines to switch off break/continue if loops are not supportedDenis Vlasenko
2008-07-28hush: fix "while false; ..." exitcode; add testsuitesDenis Vlasenko
2008-07-28hush: support "break N" and "continue N"Denis Vlasenko
2008-07-28hush: finish and enable optional case...esac support. Code size cost:Denis Vlasenko
2008-07-06hush: support "for if in do done then; do echo $if; done" caseDenis Vlasenko
2008-07-05hush: support "for v; do ... done" syntax (implied 'in "$@"')Denis Vlasenko
2008-06-17hush: fix $$ handlingDenis Vlasenko
2008-06-17hush: fix "for a in; do echo 'I should never run'; done" bugDenis Vlasenko
2008-06-14hush: fix a bug where we were requiring semicolon here: (cmd;)Denis Vlasenko
2008-06-14hush: add support for ':'; create testsuite entriesDenis Vlasenko
2008-06-14hush: support "! cmd | cmd" negationDenis Vlasenko