aboutsummaryrefslogtreecommitdiff
path: root/shell/hush_test
AgeCommit message (Expand)Author
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
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