aboutsummaryrefslogtreecommitdiff
path: root/shell/hush_test (follow)
Commit message (Expand)AuthorAgeFilesLines
* hush: fix handling of \^C and "^C"Denys Vlasenko2021-11-234-0/+6
* typo fixDenys Vlasenko2020-12-251-1/+1
* hush: fix this case: echo "SCRIPT" | hushDenys Vlasenko2020-12-252-0/+5
* hush: fix fallout from tweaking ${var:START:LEN} codeDenys Vlasenko2020-12-232-0/+3
* hush: document bugs in [[ =~ ]] comparisonDenys Vlasenko2020-11-014-0/+28
* hush: add tests for unquoted < > in [[ ]]Denys Vlasenko2020-10-312-0/+5
* shell: better support of [[ ]] bashismDenys Vlasenko2020-10-3110-0/+79
* hush: output bash-compat killing signal namesDenys Vlasenko2020-10-246-5/+53
* hush: do not print killing signal name in `cmd_whihc_dies_on_signal`Denys Vlasenko2020-10-242-0/+2
* shell: add testsuite for "wait $pid" waiting for other tasksDenys Vlasenko2020-09-292-0/+9
* shell: Fix "read -d ''" behaviorChristian Eggers2020-07-312-0/+2
* shells: fix exitcode_trapN tests to avoid racesDenys Vlasenko2020-02-262-4/+2
* ash: expand: Ensure result is escaped in cvtnumDenys Vlasenko2020-02-212-0/+10
* hush: make "exit" in trap use pre-trap exitcode - fix for nested trapDenys Vlasenko2020-02-212-0/+13
* hush: implement "return NUM in trap sets $? after trap"Denys Vlasenko2020-02-206-0/+34
* ash,hush: testcase for "exit" without arguments in a trapDenys Vlasenko2020-02-192-0/+10
* ash: expand: Fix trailing newlines processing in backquote expandingDenys Vlasenko2020-02-172-0/+12
* ash: parser: Only accept single-digit parameter expansion outside of bracesDenys Vlasenko2020-02-172-0/+7
* hush: restore redirected stdinDenys Vlasenko2019-11-012-0/+10
* 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