1. 97c3b5e hush: fix bkslash+newline handling and number validation in ${NN} and ${#NN} by Denys Vlasenko · 3 years, 7 months ago
  2. 1b7a9b6 hush: fix handling of \^C and "^C" by Denys Vlasenko · 3 years, 7 months ago
  3. cad20ce typo fix by Denys Vlasenko · 4 years, 1 month ago
  4. 1237d62 hush: fix this case: echo "SCRIPT" | hush by Denys Vlasenko · 4 years, 1 month ago
  5. a7b52d2 hush: fix fallout from tweaking ${var:START:LEN} code by Denys Vlasenko · 4 years, 1 month ago
  6. 64981b4 hush: document bugs in [[ =~ ]] comparison by Denys Vlasenko · 4 years, 2 months ago
  7. b259e97 hush: add tests for unquoted < > in [[ ]] by Denys Vlasenko · 4 years, 2 months ago
  8. d2241f5 shell: better support of [[ ]] bashism by Denys Vlasenko · 4 years, 2 months ago
  9. e16f7eb hush: output bash-compat killing signal names by Denys Vlasenko · 4 years, 3 months ago
  10. b65d6cb hush: do not print killing signal name in `cmd_whihc_dies_on_signal` by Denys Vlasenko · 4 years, 3 months ago
  11. d4dd48f shell: add testsuite for "wait $pid" waiting for other tasks by Denys Vlasenko · 4 years, 3 months ago
  12. 3992502 shell: Fix "read -d ''" behavior by Christian Eggers · 4 years, 6 months ago
  13. 9aa751b shells: fix exitcode_trapN tests to avoid races by Denys Vlasenko · 4 years, 11 months ago
  14. 45dd87a ash: expand: Ensure result is escaped in cvtnum by Denys Vlasenko · 4 years, 11 months ago
  15. 3ced804 hush: make "exit" in trap use pre-trap exitcode - fix for nested trap by Denys Vlasenko · 4 years, 11 months ago
  16. bb095f4 hush: implement "return NUM in trap sets $? after trap" by Denys Vlasenko · 4 years, 11 months ago
  17. c91950f ash,hush: testcase for "exit" without arguments in a trap by Denys Vlasenko · 5 years ago
  18. 9ee5892 ash: expand: Fix trailing newlines processing in backquote expanding by Denys Vlasenko · 5 years ago
  19. c2ce888 ash: parser: Only accept single-digit parameter expansion outside of braces by Denys Vlasenko · 5 years ago
  20. 2180656 hush: restore redirected stdin by Denys Vlasenko · 5 years ago
  21. 30a4c32 hush: remove test for "echo ${-}" errorring out - now it works by Denys Vlasenko · 6 years ago
  22. 9e0adb9 hush: fix quoted "${notexist-}" expansion to not disappear by Denys Vlasenko · 6 years ago
  23. 63d765e shells: add tests for backslashes in export VAR=VAL by Denys Vlasenko · 6 years ago
  24. eb54ca8 ash: expand: Do not quote backslashes in unquoted parameter expansion by Denys Vlasenko · 6 years ago
  25. 77c1849 hush: adopt ash's quote_in_varexp1.tests by Denys Vlasenko · 6 years ago
  26. 440da97 ash: expand: Fix ghost fields with unquoted $@/$* by Denys Vlasenko · 6 years ago
  27. 9abf53b ash: eval: Variable assignments on functions are no longer persistent by Denys Vlasenko · 6 years ago
  28. c2aa218 ash,hush: properly handle ${v//pattern/repl} if pattern starts with / by Denys Vlasenko · 6 years ago
  29. a5db1d7 hush: fix another case where empty "for" wasn't setting exitcode to 0 by Denys Vlasenko · 6 years ago
  30. 63c42af hush: add "heredoc.tests" from ash, tweak ash "is a function" message by Denys Vlasenko · 6 years ago
  31. 41ef41b hush: fix nested redirects colliding with script fds by Denys Vlasenko · 6 years ago
  32. dfc7394 hush: handle backslash-newline in heredoc terminators by Denys Vlasenko · 6 years ago
  33. 474cb20 hush: fix handling of heredocs not enclosed in groups where they are "declared" by Denys Vlasenko · 6 years ago
  34. 3675c37 hush: fix heredoc handling in the "cmd <<EOF ;<newline>" case by Denys Vlasenko · 6 years ago
  35. d73cdbf hush: fix handling of heredocs starting with empty lines by Denys Vlasenko · 6 years ago
  36. f36caa4 hush: never glob result of dquoted "${v:+/bin/c*}" by Denys Vlasenko · 6 years ago
  37. 83e434d hush: fix handling of '' in ${var:+ARG} by Denys Vlasenko · 6 years ago
  38. 294eb46 hush: fix word splitting in ${v:+ARG} - dollar_altvalue1 test by Denys Vlasenko · 6 years ago
  39. b762c78 hush: improve ${var#...}, ${var:+...} and ${var/.../...} - handle quoting by Denys Vlasenko · 6 years ago
  40. 46158dc shell: add 6856 $IFS tests to testsuites by Denys Vlasenko · 7 years ago
  41. f693b60 hush: fix recent breakage from parse_stream() changes by Denys Vlasenko · 7 years ago
  42. 44257ad hush: fix IFS handling in read by Denys Vlasenko · 7 years ago
  43. 9678636 hush: IFS fixes by Denys Vlasenko · 7 years ago
  44. 3417995 hush: fix "$v" expansion in case patterns when v='[a]' by Denys Vlasenko · 7 years ago
  45. 680c301 ash: parser: Allow newlines within parameter substitution by Denys Vlasenko · 7 years ago
  46. 89e9d55 hush: do not drop backslash from eval 'echo ok\' by Denys Vlasenko · 7 years ago
  47. 4709df0 hush: fix handling of \<eof> in double-quoted strings by Denys Vlasenko · 7 years ago
  48. bcf5611 hush: fix eval 'echo ok\' by Denys Vlasenko · 7 years ago
  49. 21b7f1b hush: fix a few more corner cases with empty-expanding `cmds` by Denys Vlasenko · 7 years ago
  50. 41d8f10 hush: fix corner cases with exec in empty expansions by Denys Vlasenko · 7 years ago
  51. d358b0b hush: fix a bug where we don't properly handle f() { a=A; b=B; }; a= f by Denys Vlasenko · 7 years ago
  52. 6140780 hush: fix for readonly vars in "ro=A ro=B cmd" case by Denys Vlasenko · 7 years ago
  53. fbf4485 hush: support "f() (cmd)" functions by Denys Vlasenko · 7 years ago
  54. 5fa0505 hush: fix "set -e; false || x=1; echo OK" by Denys Vlasenko · 7 years ago
  55. abf7556 hush: fix a backslash-removal bug in case by Denys Vlasenko · 7 years ago
  56. 9a95df9 ash: expand: Fix bugs with words connected to the right of $@ by Denys Vlasenko · 7 years ago
  57. 216913c ash: parser: Add syntax stack for recursive parsing by Denys Vlasenko · 7 years ago
  58. bb6f573 hush: add a comment where we differ from bash wrt heredoc EOF mark handling by Denys Vlasenko · 7 years ago
  59. 41fddb4 parser: Fix backquote support in here-document EOF mark by Denys Vlasenko · 7 years ago
  60. 1e5111b ash,hush: handle a few more bkslash-newline cases by Denys Vlasenko · 7 years ago
  61. 32e183e shells: fix var_LINENO1.tests false positive, add it to ash tests too by Denys Vlasenko · 7 years ago
  62. 220be53 ash: use pgetc_eatbnl() in more places by Denys Vlasenko · 7 years ago
  63. 7352307 ash,hush: new test dollar_repl_slash_bash2.tests by Denys Vlasenko · 7 years ago
  64. 9acd63c ash,hush: fix "saved" redirected fds still visible in children by Denys Vlasenko · 7 years ago
  65. d4802c6 hush: fix a='a\\'; echo "${a%\\\\}" by Denys Vlasenko · 7 years ago
  66. 55f8133 shell: tweak bkslash_in_varexp.tests, add bkslash_in_varexp1.tests by Denys Vlasenko · 7 years ago
  67. 744a20d shell: two new tests, both fail for ash and hush by Denys Vlasenko · 7 years ago
  68. 8de5b9f ash : fix double-quoted "\z" handling by Denys Vlasenko · 7 years ago
  69. f19e3c1 shell: handle $((NUM++...) like bash does. Closes 10706 by Denys Vlasenko · 7 years ago
  70. cba79a8 hush: fix two corner cases in ${v/pattern/repl}. Closes 10686 by Denys Vlasenko · 7 years ago
  71. 6aad1dd hush: implement $LINENO bashism by Denys Vlasenko · 7 years ago
  72. aea52e7 shell: echo ${?:0} was fixed sometime ago, enable it in tests by Denys Vlasenko · 7 years ago
  73. 9809a82 hush: fix raw ^C handlisg in single-quoted strings by Denys Vlasenko · 7 years ago
  74. 6606c51 hush: add command2.tests from ash tests by Denys Vlasenko · 7 years ago
  75. 1f19112 hush: fix handling of ^C in eval by Denys Vlasenko · 7 years ago
  76. 932b997 hush: fix handling of raw ^C in scripts: "echo ^C" by Denys Vlasenko · 7 years ago
  77. a5060b8 ash: fix nofork bug where environment is not properly passed to a command by Denys Vlasenko · 7 years ago
  78. 25f3b73 hush: fix comment parsing in `cmd`, closes 10421 by Denys Vlasenko · 7 years ago
  79. 9fed83a hush: fix false positive in unset.tests by Denys Vlasenko · 7 years ago
  80. 238ff98 hush: fix "getopts" builtin to not be upset by other builtins calling getopt() by Denys Vlasenko · 7 years ago
  81. 007ce9f shell: tweak getopts tests, no code changes by Denys Vlasenko · 7 years ago
  82. 419db03 hush: implement "silent" optstrings of ":opts" by Denys Vlasenko · 7 years ago
  83. 129e1ce hush: add a test which fails due to uclibc bug in getopt() by Denys Vlasenko · 7 years ago
  84. 9a7d0a0 shell: add OPTARG poisoning to getopt_optarg.tests by Denys Vlasenko · 7 years ago
  85. 81f962f hush: teach getopts to set/unset OPTARG by Denys Vlasenko · 7 years ago
  86. 74d4058 hush: getopts builtin by Denys Vlasenko · 7 years ago
  87. 19c9f31 nofork: fix a bug uncovered by hush testsuite (forgotten fflush) by Denys Vlasenko · 7 years ago
  88. 3970120 hush: do not accept "if() { echo; }" function def by Denys Vlasenko · 7 years ago
  89. 5b3d2eb hush: fix "true | func_with_return" not allowing return. by Denys Vlasenko · 7 years ago
  90. 75481d3 hush: functions have priority over builtins (!) by Denys Vlasenko · 7 years ago
  91. 035486c ash: significant overhaul of redirect saving logic by Denys Vlasenko · 7 years ago
  92. 0f018b3 hush: fix handling of empty heredoc EOF marker by Denys Vlasenko · 7 years ago
  93. b0648b0 shell: remove ${#+} tests, it is not a valid construct by Denys Vlasenko · 7 years ago
  94. 2093ad2 hush: fix ${##}, ${#?}, ${#!} handling by Denys Vlasenko · 7 years ago
  95. b28d4c3 ash: [VAR] Move unsetvar functionality into setvareq by Denys Vlasenko · 7 years ago
  96. be669fa ash: import param_expand_default.tests from hush by Denys Vlasenko · 7 years ago
  97. 645c697 hush: treat ${#?} as "length of $?" by Denys Vlasenko · 7 years ago
  98. 6492538 ash: add a few tests from hush-vars/* by Denys Vlasenko · 7 years ago
  99. ca50caa shell: some additions to *sh-misc/* tests by Denys Vlasenko · 7 years ago
  100. 621fc50 hush: fix a case when redirect to a closed fd #1 is not restoring (closing) it by Denys Vlasenko · 7 years ago