aboutsummaryrefslogtreecommitdiff
path: root/shell/hush_test/hush-parsing (follow)
Commit message (Collapse)AuthorAgeFilesLines
* hush: improve HUSH_BRACE_EXP code (still disabled). ~0 bytesDenys Vlasenko2009-11-172-0/+8
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* hush: fix handling of words with braces. +65 bytesDenys Vlasenko2009-11-162-0/+14
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* hush: do not use ps -o in leak_argv1; do not hardcode path in negateDenys Vlasenko2009-08-122-1/+5
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* hush: fix bug 353 (wrong handling of \x in assignments)Denys Vlasenko2009-05-282-0/+16
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* hush: fix \<newline> handlingDenys Vlasenko2009-05-033-0/+8
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* hush: fix handling of } which is not a closing one in { cmd; }Denis Vlasenko2009-04-192-0/+2
| | | | | | | function old new delta parse_stream 2176 2302 +126 builtin_unset 381 387 +6
* hush: fix "if { echo foo; } then { echo bar; } fi" parsingDenis Vlasenko2009-04-162-0/+21
| | | | | | | function old new delta done_word 728 793 +65 parse_stream 2084 2098 +14
* skip some tests when fancy echo support is turned offMike Frysinger2009-04-092-0/+4
|
* we arent testing `echo -n` here so use printf insteadMike Frysinger2009-04-091-6/+6
|
* move hush-parsing/and-or.tests to hush-misc/*Denis Vlasenko2009-04-062-52/+0
| | | | | (which probably needs to be renamed to hush-execution...)
* add some brute force logic testsMike Frysinger2009-04-062-0/+52
|
* hush: tweak testsuiteDenis Vlasenko2009-03-202-1/+5
|
* hush: fix bug 207 and "hush -c" parameter passing.Denis Vlasenko2009-03-202-0/+4
| | | | | | | Now hush -c 'printf "%s\n" "$@"' (prints "\n") and hush -c 'printf "%s\n" "$@"' qwe asd (prints "asd\n") both work correctly
* hush: fix a case where "$@" must expand to no word at allDenis Vlasenko2008-07-052-0/+16
|
* hush: add testsuite for "no globbing in redirection" rule.Denis Vlasenko2008-06-184-0/+40
| | | | | simplify redirection habdling
* hush: expand quote3.tests and move from hush-bugs to hush-parsingDenis Vlasenko2008-06-182-0/+33
|
* hush: support "! cmd | cmd" negationDenis Vlasenko2008-06-142-0/+51
| | | | | | | | | | | | | function old new delta done_word 749 791 +42 run_list 1821 1859 +38 checkjobs 334 351 +17 done_pipe 61 74 +13 static.reserved_list 132 144 +12 initialize_context 53 45 -8 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 5/1 up/down: 122/-8) Total: 114 bytes
* hush: fix escaping of \[*?; add testsuites for these and for globbingDenis Vlasenko2008-06-104-0/+16
|
* hush: make syntax error messages a bit more usefulDenis Vlasenko2007-05-232-0/+3
|
* hush: fix a bit different instance of "No EOL" bug,Denis Vlasenko2007-05-232-0/+8
| | | | add testsuite for that. Expand another testsuite.
* shells: update README and testsuite. environment memory leakDenis Vlasenko2007-05-212-0/+2
| | | | needs to be fixed - and documented!
* hush: fix expansion of quoted $VAR, $* and $@Denis Vlasenko2007-05-164-0/+19
|
* hush: fix incorrect processing of echo "'$var'".Denis Vlasenko2007-05-162-0/+3
| | | | | | 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-0/+8
| | | | (as these bugs are now fixed)
* hush: reinstate hush_test, add testcases for process substDenis Vlasenko2007-05-114-0/+7
|
* hush: fix bug in interactive shell introduced yesterdayDenis Vlasenko2007-05-112-3/+0
| | | | | hush: fix `process subst` (2 bugs) NB: will delete and re-add hush_test in order to change file modes
* hush: fix "unterminated last line loops forever" bugDenis Vlasenko2007-05-102-0/+3
hush: add testsuite infrastructure