summaryrefslogtreecommitdiff
path: root/shell/hush_test
Commit message (Expand)AuthorAgeFilesLines
* hush: remove test for "echo ${-}" errorring out - now it worksDenys Vlasenko2019-05-192-3/+0
* hush: fix quoted "${notexist-}" expansion to not disappearDenys Vlasenko2019-05-152-0/+7
* shells: add tests for backslashes in export VAR=VALDenys Vlasenko2019-05-142-0/+3
* ash: expand: Do not quote backslashes in unquoted parameter expansionDenys Vlasenko2018-08-072-0/+14
* hush: adopt ash's quote_in_varexp1.testsDenys Vlasenko2018-08-052-0/+4
* ash: expand: Fix ghost fields with unquoted $@/$*Denys Vlasenko2018-08-052-0/+5
* ash: eval: Variable assignments on functions are no longer persistentDenys Vlasenko2018-08-051-1/+1
* ash,hush: properly handle ${v//pattern/repl} if pattern starts with /Denys Vlasenko2018-08-042-0/+5
* hush: fix another case where empty "for" wasn't setting exitcode to 0Denys Vlasenko2018-07-282-0/+6
* hush: add "heredoc.tests" from ash, tweak ash "is a function" messageDenys Vlasenko2018-07-242-0/+117
* hush: fix nested redirects colliding with script fdsDenys Vlasenko2018-07-243-0/+19
* hush: handle backslash-newline in heredoc terminatorsDenys Vlasenko2018-07-242-0/+5
* hush: fix handling of heredocs not enclosed in groups where they are "declared"Denys Vlasenko2018-07-244-0/+20
* hush: fix heredoc handling in the "cmd <<EOF ;<newline>" caseDenys Vlasenko2018-07-234-0/+15
* hush: fix handling of heredocs starting with empty linesDenys Vlasenko2018-07-232-0/+6
* hush: never glob result of dquoted "${v:+/bin/c*}"Denys Vlasenko2018-07-202-0/+20
* hush: fix handling of '' in ${var:+ARG}Denys Vlasenko2018-07-203-0/+104
* hush: fix word splitting in ${v:+ARG} - dollar_altvalue1 testDenys Vlasenko2018-07-202-0/+41
* hush: improve ${var#...}, ${var:+...} and ${var/.../...} - handle quotingDenys Vlasenko2018-07-179-2/+72
* shell: add 6856 $IFS tests to testsuitesDenys Vlasenko2018-04-112-0/+258
* hush: fix recent breakage from parse_stream() changesDenys Vlasenko2018-04-112-0/+5
* hush: fix IFS handling in readDenys Vlasenko2018-04-112-0/+18
* hush: IFS fixesDenys Vlasenko2018-04-112-0/+9
* hush: fix "$v" expansion in case patterns when v='[a]'Denys Vlasenko2018-04-112-0/+9
* ash: parser: Allow newlines within parameter substitutionDenys Vlasenko2018-04-112-0/+11
* hush: do not drop backslash from eval 'echo ok\'Denys Vlasenko2018-04-111-1/+1
* hush: fix handling of \<eof> in double-quoted stringsDenys Vlasenko2018-04-102-0/+6
* hush: fix eval 'echo ok\'Denys Vlasenko2018-04-102-0/+2
* hush: fix a few more corner cases with empty-expanding `cmds`Denys Vlasenko2018-04-054-0/+34
* hush: fix corner cases with exec in empty expansionsDenys Vlasenko2018-04-052-0/+5
* hush: fix a bug where we don't properly handle f() { a=A; b=B; }; a= fDenys Vlasenko2018-04-054-0/+22
* hush: fix for readonly vars in "ro=A ro=B cmd" caseDenys Vlasenko2018-04-042-0/+8
* hush: support "f() (cmd)" functionsDenys Vlasenko2018-04-031-3/+2
* hush: fix "set -e; false || x=1; echo OK"Denys Vlasenko2018-04-032-0/+14
* hush: fix a backslash-removal bug in caseDenys Vlasenko2018-04-022-0/+16
* ash: expand: Fix bugs with words connected to the right of $@Denys Vlasenko2018-04-022-0/+3
* ash: parser: Add syntax stack for recursive parsingDenys Vlasenko2018-04-028-12/+16
* hush: add a comment where we differ from bash wrt heredoc EOF mark handlingDenys Vlasenko2018-04-012-15/+0
* parser: Fix backquote support in here-document EOF markDenys Vlasenko2018-04-012-0/+15
* ash,hush: handle a few more bkslash-newline casesDenys Vlasenko2018-04-014-0/+20
* shells: fix var_LINENO1.tests false positive, add it to ash tests tooDenys Vlasenko2018-03-311-1/+1
* ash: use pgetc_eatbnl() in more placesDenys Vlasenko2018-03-312-0/+33
* ash,hush: new test dollar_repl_slash_bash2.testsDenys Vlasenko2018-03-302-0/+3
* ash,hush: fix "saved" redirected fds still visible in childrenDenys Vlasenko2018-03-286-0/+33
* hush: fix a='a\\'; echo "${a%\\\\}"Denys Vlasenko2018-03-024-0/+14
* shell: tweak bkslash_in_varexp.tests, add bkslash_in_varexp1.testsDenys Vlasenko2018-03-023-1/+22
* shell: two new tests, both fail for ash and hushDenys Vlasenko2018-03-024-0/+22
* ash : fix double-quoted "\z" handlingDenys Vlasenko2018-02-132-0/+48
* shell: handle $((NUM++...) like bash does. Closes 10706Denys Vlasenko2018-01-284-6/+20
* hush: fix two corner cases in ${v/pattern/repl}. Closes 10686Denys Vlasenko2018-01-254-0/+10