- 1c54552 ash: fix ifs cleanup on error paths by Denys Vlasenko · 2 years, 4 months ago
- fa52ac9 ash: don't read past end of var in subvareval for bash substitutions by Sören Tempel · 2 years, 10 months ago
- 5acf5e1 shell: fix script's comm field if ENABLE_FEATURE_PREFER_APPLETS=y by Denys Vlasenko · 3 years, 2 months ago
- 1be73dd shell: fix parsing of $(( (v)++ + NUM )) by Denys Vlasenko · 3 years, 3 months ago
- 62e4331 shell: enable more tests which are passing now by Denys Vlasenko · 3 years, 3 months ago
- d84a604 shell: fix arithmentic evaluation of "++7" and such (it is + + 7, i.e. 7) by Denys Vlasenko · 3 years, 3 months ago
- 64aa86b ash: LINENO starts from 0 in -c SCRIPT mode by Denys Vlasenko · 3 years, 3 months ago
- d6c9cbc ash: fix LINENO in functions by Denys Vlasenko · 3 years, 3 months ago
- e53c7db hush: fix set -n to act immediately, not just after run_list() by Denys Vlasenko · 3 years, 3 months ago
- c450437 shell: update psubst testcases by Denys Vlasenko · 3 years, 5 months ago
- b278d82 hush: implement $'str' bashism by Denys Vlasenko · 3 years, 5 months ago
- 05c5d74 ahell: update testsuite by Denys Vlasenko · 3 years, 5 months ago
- 97c3b5e hush: fix bkslash+newline handling and number validation in ${NN} and ${#NN} by Denys Vlasenko · 3 years, 6 months ago
- 1b7a9b6 hush: fix handling of \^C and "^C" by Denys Vlasenko · 3 years, 6 months ago
- cad20ce typo fix by Denys Vlasenko · 4 years ago
- 1237d62 hush: fix this case: echo "SCRIPT" | hush by Denys Vlasenko · 4 years ago
- a7b52d2 hush: fix fallout from tweaking ${var:START:LEN} code by Denys Vlasenko · 4 years ago
- 64981b4 hush: document bugs in [[ =~ ]] comparison by Denys Vlasenko · 4 years, 1 month ago
- b259e97 hush: add tests for unquoted < > in [[ ]] by Denys Vlasenko · 4 years, 1 month ago
- d2241f5 shell: better support of [[ ]] bashism by Denys Vlasenko · 4 years, 1 month ago
- e16f7eb hush: output bash-compat killing signal names by Denys Vlasenko · 4 years, 2 months ago
- b65d6cb hush: do not print killing signal name in `cmd_whihc_dies_on_signal` by Denys Vlasenko · 4 years, 2 months ago
- d4dd48f shell: add testsuite for "wait $pid" waiting for other tasks by Denys Vlasenko · 4 years, 2 months ago
- 3992502 shell: Fix "read -d ''" behavior by Christian Eggers · 4 years, 6 months ago
- 9aa751b shells: fix exitcode_trapN tests to avoid races by Denys Vlasenko · 4 years, 10 months ago
- 45dd87a ash: expand: Ensure result is escaped in cvtnum by Denys Vlasenko · 4 years, 10 months ago
- 3ced804 hush: make "exit" in trap use pre-trap exitcode - fix for nested trap by Denys Vlasenko · 4 years, 10 months ago
- bb095f4 hush: implement "return NUM in trap sets $? after trap" by Denys Vlasenko · 4 years, 10 months ago
- c91950f ash,hush: testcase for "exit" without arguments in a trap by Denys Vlasenko · 4 years, 10 months ago
- 9ee5892 ash: expand: Fix trailing newlines processing in backquote expanding by Denys Vlasenko · 4 years, 10 months ago
- c2ce888 ash: parser: Only accept single-digit parameter expansion outside of braces by Denys Vlasenko · 4 years, 10 months ago
- 2180656 hush: restore redirected stdin by Denys Vlasenko · 5 years ago
- 30a4c32 hush: remove test for "echo ${-}" errorring out - now it works by Denys Vlasenko · 6 years ago
- 9e0adb9 hush: fix quoted "${notexist-}" expansion to not disappear by Denys Vlasenko · 6 years ago
- 63d765e shells: add tests for backslashes in export VAR=VAL by Denys Vlasenko · 6 years ago
- eb54ca8 ash: expand: Do not quote backslashes in unquoted parameter expansion by Denys Vlasenko · 6 years ago
- 77c1849 hush: adopt ash's quote_in_varexp1.tests by Denys Vlasenko · 6 years ago
- 440da97 ash: expand: Fix ghost fields with unquoted $@/$* by Denys Vlasenko · 6 years ago
- 9abf53b ash: eval: Variable assignments on functions are no longer persistent by Denys Vlasenko · 6 years ago
- c2aa218 ash,hush: properly handle ${v//pattern/repl} if pattern starts with / by Denys Vlasenko · 6 years ago
- a5db1d7 hush: fix another case where empty "for" wasn't setting exitcode to 0 by Denys Vlasenko · 6 years ago
- 63c42af hush: add "heredoc.tests" from ash, tweak ash "is a function" message by Denys Vlasenko · 6 years ago
- 41ef41b hush: fix nested redirects colliding with script fds by Denys Vlasenko · 6 years ago
- dfc7394 hush: handle backslash-newline in heredoc terminators by Denys Vlasenko · 6 years ago
- 474cb20 hush: fix handling of heredocs not enclosed in groups where they are "declared" by Denys Vlasenko · 6 years ago
- 3675c37 hush: fix heredoc handling in the "cmd <<EOF ;<newline>" case by Denys Vlasenko · 6 years ago
- d73cdbf hush: fix handling of heredocs starting with empty lines by Denys Vlasenko · 6 years ago
- f36caa4 hush: never glob result of dquoted "${v:+/bin/c*}" by Denys Vlasenko · 6 years ago
- 83e434d hush: fix handling of '' in ${var:+ARG} by Denys Vlasenko · 6 years ago
- 294eb46 hush: fix word splitting in ${v:+ARG} - dollar_altvalue1 test by Denys Vlasenko · 6 years ago
- b762c78 hush: improve ${var#...}, ${var:+...} and ${var/.../...} - handle quoting by Denys Vlasenko · 6 years ago
- 46158dc shell: add 6856 $IFS tests to testsuites by Denys Vlasenko · 7 years ago
- f693b60 hush: fix recent breakage from parse_stream() changes by Denys Vlasenko · 7 years ago
- 44257ad hush: fix IFS handling in read by Denys Vlasenko · 7 years ago
- 9678636 hush: IFS fixes by Denys Vlasenko · 7 years ago
- 3417995 hush: fix "$v" expansion in case patterns when v='[a]' by Denys Vlasenko · 7 years ago
- 680c301 ash: parser: Allow newlines within parameter substitution by Denys Vlasenko · 7 years ago
- 89e9d55 hush: do not drop backslash from eval 'echo ok\' by Denys Vlasenko · 7 years ago
- 4709df0 hush: fix handling of \<eof> in double-quoted strings by Denys Vlasenko · 7 years ago
- bcf5611 hush: fix eval 'echo ok\' by Denys Vlasenko · 7 years ago
- 21b7f1b hush: fix a few more corner cases with empty-expanding `cmds` by Denys Vlasenko · 7 years ago
- 41d8f10 hush: fix corner cases with exec in empty expansions by Denys Vlasenko · 7 years ago
- d358b0b hush: fix a bug where we don't properly handle f() { a=A; b=B; }; a= f by Denys Vlasenko · 7 years ago
- 6140780 hush: fix for readonly vars in "ro=A ro=B cmd" case by Denys Vlasenko · 7 years ago
- fbf4485 hush: support "f() (cmd)" functions by Denys Vlasenko · 7 years ago
- 5fa0505 hush: fix "set -e; false || x=1; echo OK" by Denys Vlasenko · 7 years ago
- abf7556 hush: fix a backslash-removal bug in case by Denys Vlasenko · 7 years ago
- 9a95df9 ash: expand: Fix bugs with words connected to the right of $@ by Denys Vlasenko · 7 years ago
- 216913c ash: parser: Add syntax stack for recursive parsing by Denys Vlasenko · 7 years ago
- bb6f573 hush: add a comment where we differ from bash wrt heredoc EOF mark handling by Denys Vlasenko · 7 years ago
- 41fddb4 parser: Fix backquote support in here-document EOF mark by Denys Vlasenko · 7 years ago
- 1e5111b ash,hush: handle a few more bkslash-newline cases by Denys Vlasenko · 7 years ago
- 32e183e shells: fix var_LINENO1.tests false positive, add it to ash tests too by Denys Vlasenko · 7 years ago
- 220be53 ash: use pgetc_eatbnl() in more places by Denys Vlasenko · 7 years ago
- 7352307 ash,hush: new test dollar_repl_slash_bash2.tests by Denys Vlasenko · 7 years ago
- 9acd63c ash,hush: fix "saved" redirected fds still visible in children by Denys Vlasenko · 7 years ago
- d4802c6 hush: fix a='a\\'; echo "${a%\\\\}" by Denys Vlasenko · 7 years ago
- 55f8133 shell: tweak bkslash_in_varexp.tests, add bkslash_in_varexp1.tests by Denys Vlasenko · 7 years ago
- 744a20d shell: two new tests, both fail for ash and hush by Denys Vlasenko · 7 years ago
- 8de5b9f ash : fix double-quoted "\z" handling by Denys Vlasenko · 7 years ago
- f19e3c1 shell: handle $((NUM++...) like bash does. Closes 10706 by Denys Vlasenko · 7 years ago
- cba79a8 hush: fix two corner cases in ${v/pattern/repl}. Closes 10686 by Denys Vlasenko · 7 years ago
- 6aad1dd hush: implement $LINENO bashism by Denys Vlasenko · 7 years ago
- aea52e7 shell: echo ${?:0} was fixed sometime ago, enable it in tests by Denys Vlasenko · 7 years ago
- 9809a82 hush: fix raw ^C handlisg in single-quoted strings by Denys Vlasenko · 7 years ago
- 6606c51 hush: add command2.tests from ash tests by Denys Vlasenko · 7 years ago
- 1f19112 hush: fix handling of ^C in eval by Denys Vlasenko · 7 years ago
- 932b997 hush: fix handling of raw ^C in scripts: "echo ^C" by Denys Vlasenko · 7 years ago
- a5060b8 ash: fix nofork bug where environment is not properly passed to a command by Denys Vlasenko · 7 years ago
- 25f3b73 hush: fix comment parsing in `cmd`, closes 10421 by Denys Vlasenko · 7 years ago
- 9fed83a hush: fix false positive in unset.tests by Denys Vlasenko · 7 years ago
- 238ff98 hush: fix "getopts" builtin to not be upset by other builtins calling getopt() by Denys Vlasenko · 7 years ago
- 007ce9f shell: tweak getopts tests, no code changes by Denys Vlasenko · 7 years ago
- 419db03 hush: implement "silent" optstrings of ":opts" by Denys Vlasenko · 7 years ago
- 129e1ce hush: add a test which fails due to uclibc bug in getopt() by Denys Vlasenko · 7 years ago
- 9a7d0a0 shell: add OPTARG poisoning to getopt_optarg.tests by Denys Vlasenko · 7 years ago
- 81f962f hush: teach getopts to set/unset OPTARG by Denys Vlasenko · 7 years ago
- 74d4058 hush: getopts builtin by Denys Vlasenko · 7 years ago
- 19c9f31 nofork: fix a bug uncovered by hush testsuite (forgotten fflush) by Denys Vlasenko · 7 years ago
- 3970120 hush: do not accept "if() { echo; }" function def by Denys Vlasenko · 7 years ago