aboutsummaryrefslogtreecommitdiff
path: root/shell/hush_test
AgeCommit message (Expand)Author
2020-12-25typo fixDenys Vlasenko
2020-12-25hush: fix this case: echo "SCRIPT" | hushDenys Vlasenko
2020-12-23hush: fix fallout from tweaking ${var:START:LEN} codeDenys Vlasenko
2020-11-01hush: document bugs in [[ =~ ]] comparisonDenys Vlasenko
2020-10-31hush: add tests for unquoted < > in [[ ]]Denys Vlasenko
2020-10-31shell: better support of [[ ]] bashismDenys Vlasenko
2020-10-24hush: output bash-compat killing signal namesDenys Vlasenko
2020-10-24hush: do not print killing signal name in `cmd_whihc_dies_on_signal`Denys Vlasenko
2020-09-29shell: add testsuite for "wait $pid" waiting for other tasksDenys Vlasenko
2020-07-31shell: Fix "read -d ''" behaviorChristian Eggers
2020-02-26shells: fix exitcode_trapN tests to avoid racesDenys Vlasenko
2020-02-21ash: expand: Ensure result is escaped in cvtnumDenys Vlasenko
2020-02-21hush: make "exit" in trap use pre-trap exitcode - fix for nested trapDenys Vlasenko
2020-02-20hush: implement "return NUM in trap sets $? after trap"Denys Vlasenko
2020-02-19ash,hush: testcase for "exit" without arguments in a trapDenys Vlasenko
2020-02-17ash: expand: Fix trailing newlines processing in backquote expandingDenys Vlasenko
2020-02-17ash: parser: Only accept single-digit parameter expansion outside of bracesDenys Vlasenko
2019-11-01hush: restore redirected stdinDenys Vlasenko
2019-05-19hush: remove test for "echo ${-}" errorring out - now it worksDenys Vlasenko
2019-05-15hush: fix quoted "${notexist-}" expansion to not disappearDenys Vlasenko
2019-05-14shells: add tests for backslashes in export VAR=VALDenys Vlasenko
2018-08-07ash: expand: Do not quote backslashes in unquoted parameter expansionDenys Vlasenko
2018-08-05hush: adopt ash's quote_in_varexp1.testsDenys Vlasenko
2018-08-05ash: expand: Fix ghost fields with unquoted $@/$*Denys Vlasenko
2018-08-05ash: eval: Variable assignments on functions are no longer persistentDenys Vlasenko
2018-08-04ash,hush: properly handle ${v//pattern/repl} if pattern starts with /Denys Vlasenko
2018-07-28hush: fix another case where empty "for" wasn't setting exitcode to 0Denys Vlasenko
2018-07-24hush: add "heredoc.tests" from ash, tweak ash "is a function" messageDenys Vlasenko
2018-07-24hush: fix nested redirects colliding with script fdsDenys Vlasenko
2018-07-24hush: handle backslash-newline in heredoc terminatorsDenys Vlasenko
2018-07-24hush: fix handling of heredocs not enclosed in groups where they are "declared"Denys Vlasenko
2018-07-23hush: fix heredoc handling in the "cmd <<EOF ;<newline>" caseDenys Vlasenko
2018-07-23hush: fix handling of heredocs starting with empty linesDenys Vlasenko
2018-07-20hush: never glob result of dquoted "${v:+/bin/c*}"Denys Vlasenko
2018-07-20hush: fix handling of '' in ${var:+ARG}Denys Vlasenko
2018-07-20hush: fix word splitting in ${v:+ARG} - dollar_altvalue1 testDenys Vlasenko
2018-07-17hush: improve ${var#...}, ${var:+...} and ${var/.../...} - handle quotingDenys Vlasenko
2018-04-11shell: add 6856 $IFS tests to testsuitesDenys Vlasenko
2018-04-11hush: fix recent breakage from parse_stream() changesDenys Vlasenko
2018-04-11hush: fix IFS handling in readDenys Vlasenko
2018-04-11hush: IFS fixesDenys Vlasenko
2018-04-11hush: fix "$v" expansion in case patterns when v='[a]'Denys Vlasenko
2018-04-11ash: parser: Allow newlines within parameter substitutionDenys Vlasenko
2018-04-11hush: do not drop backslash from eval 'echo ok\'Denys Vlasenko
2018-04-10hush: fix handling of \<eof> in double-quoted stringsDenys Vlasenko
2018-04-10hush: fix eval 'echo ok\'Denys Vlasenko
2018-04-05hush: fix a few more corner cases with empty-expanding `cmds`Denys Vlasenko
2018-04-05hush: fix corner cases with exec in empty expansionsDenys Vlasenko
2018-04-05hush: fix a bug where we don't properly handle f() { a=A; b=B; }; a= fDenys Vlasenko
2018-04-04hush: fix for readonly vars in "ro=A ro=B cmd" caseDenys Vlasenko