aboutsummaryrefslogtreecommitdiff
path: root/shell/hush_test
AgeCommit message (Expand)Author
2009-04-06move hush-parsing/and-or.tests to hush-misc/*Denis Vlasenko
2009-04-06add some brute force logic testsMike Frysinger
2009-04-06add tests for basic fd open/close/dupeMike Frysinger
2009-04-06fix redir1 tests -- usleep isnt standard in $PATHMike Frysinger
2009-04-05fixing mode on hush-leak/leak_argv1.testsDenis Vlasenko
2009-04-05fixing mode on hush-leak/leak_argv1.testsDenis Vlasenko
2009-04-05hush: fix passing of $n on NOMMUDenis Vlasenko
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
2009-04-03hush: fix bug with local environment vars in pipes; simplify parse_stream()Denis Vlasenko
2009-04-02trim trailing slashes from specified subdir so we output to the right placeMike Frysinger
2009-04-02hush: rename ->o_quote to ->o_escapeDenis Vlasenko
2009-03-31hust_test/*: use "$THIS_SH" instead of hushDenis Vlasenko
2009-03-30implement `unset` semantics as required by POSIXMike Frysinger
2009-03-29enable trap testsMike Frysinger
2009-03-29add test cases for `trap` ... but disabled for now until trap support is comm...Mike Frysinger
2009-03-28test for invalid named variablesMike Frysinger
2009-03-28remove ((expr)) bash'ismDenis Vlasenko
2009-03-28add hush tests for parameter expansionMike Frysinger
2009-03-28make sure we exit based on test failure rather than always exiting with 0Mike Frysinger
2009-03-22hush: fix segv at repeated "set -- a b c" + "shift"Denis Vlasenko
2009-03-20hush: tweak testsuiteDenis Vlasenko
2009-03-20hush: fix bug 207 and "hush -c" parameter passing.Denis Vlasenko
2008-10-13hush: fix NOMMU bug (analogous to preceding commit for MMU)Denis Vlasenko
2008-10-13testcase for the last fixDenis Vlasenko
2008-10-09hush: fix environment and memory leaks, add tests for themDenis Vlasenko
2008-08-04hush: fix mishandling of a'b'c=fff as assignments. They are not.Denis Vlasenko
2008-07-31hush: support $_NUMBERS variable namesDenis 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-07-05hush: fix a case where "$@" must expand to no word at allDenis Vlasenko
2008-06-18cosmetics in hush testsuitesDenis Vlasenko
2008-06-18fix globbing in unquoted $* and $@Denis Vlasenko
2008-06-18hush: add testsuite for "no globbing in redirection" rule.Denis Vlasenko
2008-06-18hush: expand quote3.tests and move from hush-bugs to hush-parsingDenis 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-17move glob_and_assign.tests from hush-bugs to hush-globDenis Vlasenko
2008-06-17hush: continue fixing quoting and subst: fix glob_and_assign.tests.Denis Vlasenko
2008-06-16hush: delete hush-bugs/glob_and_vars.tests for realDenis Vlasenko
2008-06-16hush: fix hush-bugs/glob_and_vars.tests testcase:Denis Vlasenko
2008-06-14hush: fix a bug where we were requiring semicolon here: (cmd;)Denis Vlasenko