aboutsummaryrefslogtreecommitdiff
path: root/shell/hush_test
AgeCommit message (Expand)Author
2018-04-03hush: support "f() (cmd)" functionsDenys Vlasenko
2018-04-03hush: fix "set -e; false || x=1; echo OK"Denys Vlasenko
2018-04-02hush: fix a backslash-removal bug in caseDenys Vlasenko
2018-04-02ash: expand: Fix bugs with words connected to the right of $@Denys Vlasenko
2018-04-02ash: parser: Add syntax stack for recursive parsingDenys Vlasenko
2018-04-01hush: add a comment where we differ from bash wrt heredoc EOF mark handlingDenys Vlasenko
2018-04-01parser: Fix backquote support in here-document EOF markDenys Vlasenko
2018-04-01ash,hush: handle a few more bkslash-newline casesDenys Vlasenko
2018-03-31shells: fix var_LINENO1.tests false positive, add it to ash tests tooDenys Vlasenko
2018-03-31ash: use pgetc_eatbnl() in more placesDenys Vlasenko
2018-03-30ash,hush: new test dollar_repl_slash_bash2.testsDenys Vlasenko
2018-03-28ash,hush: fix "saved" redirected fds still visible in childrenDenys Vlasenko
2018-03-02hush: fix a='a\\'; echo "${a%\\\\}"Denys Vlasenko
2018-03-02shell: tweak bkslash_in_varexp.tests, add bkslash_in_varexp1.testsDenys Vlasenko
2018-03-02shell: two new tests, both fail for ash and hushDenys Vlasenko
2018-02-13ash : fix double-quoted "\z" handlingDenys Vlasenko
2018-01-28shell: handle $((NUM++...) like bash does. Closes 10706Denys Vlasenko
2018-01-25hush: fix two corner cases in ${v/pattern/repl}. Closes 10686Denys Vlasenko
2018-01-19hush: implement $LINENO bashismDenys Vlasenko
2018-01-13shell: echo ${?:0} was fixed sometime ago, enable it in testsDenys Vlasenko
2018-01-13hush: fix raw ^C handlisg in single-quoted stringsDenys Vlasenko
2018-01-12hush: add command2.tests from ash testsDenys Vlasenko
2018-01-11hush: fix handling of ^C in evalDenys Vlasenko
2018-01-11hush: fix handling of raw ^C in scripts: "echo ^C"Denys Vlasenko
2017-11-03ash: fix nofork bug where environment is not properly passed to a commandDenys Vlasenko
2017-10-22hush: fix comment parsing in `cmd`, closes 10421Denys Vlasenko
2017-08-29hush: fix false positive in unset.testsDenys Vlasenko
2017-08-29hush: fix "getopts" builtin to not be upset by other builtins calling getopt()Denys Vlasenko
2017-08-13shell: tweak getopts tests, no code changesDenys Vlasenko
2017-08-11hush: implement "silent" optstrings of ":opts"Denys Vlasenko
2017-08-11hush: add a test which fails due to uclibc bug in getopt()Denys Vlasenko
2017-08-11shell: add OPTARG poisoning to getopt_optarg.testsDenys Vlasenko
2017-08-11hush: teach getopts to set/unset OPTARGDenys Vlasenko
2017-08-11hush: getopts builtinDenys Vlasenko
2017-08-03nofork: fix a bug uncovered by hush testsuite (forgotten fflush)Denys Vlasenko
2017-08-02hush: do not accept "if() { echo; }" function defDenys Vlasenko
2017-07-31hush: fix "true | func_with_return" not allowing return.Denys Vlasenko
2017-07-31hush: functions have priority over builtins (!)Denys Vlasenko
2017-07-31ash: significant overhaul of redirect saving logicDenys Vlasenko
2017-07-29hush: fix handling of empty heredoc EOF markerDenys Vlasenko
2017-07-26shell: remove ${#+} tests, it is not a valid constructDenys Vlasenko
2017-07-26hush: fix ${##}, ${#?}, ${#!} handlingDenys Vlasenko
2017-07-25ash: [VAR] Move unsetvar functionality into setvareqDenys Vlasenko
2017-07-25ash: import param_expand_default.tests from hushDenys Vlasenko
2017-07-25hush: treat ${#?} as "length of $?"Denys Vlasenko
2017-07-25ash: add a few tests from hush-vars/*Denys Vlasenko
2017-07-24shell: some additions to *sh-misc/* testsDenys Vlasenko
2017-07-24hush: fix a case when redirect to a closed fd #1 is not restoring (closing) itDenys Vlasenko
2017-07-20shell: optional support for read -t N.NNN, closes 10101Denys Vlasenko
2017-07-18hush: fix readonly2.tests failureDenys Vlasenko