1. 440da97 ash: expand: Fix ghost fields with unquoted $@/$* by Denys Vlasenko · 6 years ago
  2. 9abf53b ash: eval: Variable assignments on functions are no longer persistent by Denys Vlasenko · 6 years ago
  3. c2aa218 ash,hush: properly handle ${v//pattern/repl} if pattern starts with / by Denys Vlasenko · 6 years ago
  4. a5db1d7 hush: fix another case where empty "for" wasn't setting exitcode to 0 by Denys Vlasenko · 6 years ago
  5. 63c42af hush: add "heredoc.tests" from ash, tweak ash "is a function" message by Denys Vlasenko · 6 years ago
  6. 41ef41b hush: fix nested redirects colliding with script fds by Denys Vlasenko · 6 years ago
  7. dfc7394 hush: handle backslash-newline in heredoc terminators by Denys Vlasenko · 6 years ago
  8. 474cb20 hush: fix handling of heredocs not enclosed in groups where they are "declared" by Denys Vlasenko · 6 years ago
  9. 3675c37 hush: fix heredoc handling in the "cmd <<EOF ;<newline>" case by Denys Vlasenko · 6 years ago
  10. d73cdbf hush: fix handling of heredocs starting with empty lines by Denys Vlasenko · 6 years ago
  11. f36caa4 hush: never glob result of dquoted "${v:+/bin/c*}" by Denys Vlasenko · 6 years ago
  12. 83e434d hush: fix handling of '' in ${var:+ARG} by Denys Vlasenko · 6 years ago
  13. 294eb46 hush: fix word splitting in ${v:+ARG} - dollar_altvalue1 test by Denys Vlasenko · 6 years ago
  14. b762c78 hush: improve ${var#...}, ${var:+...} and ${var/.../...} - handle quoting by Denys Vlasenko · 6 years ago
  15. 46158dc shell: add 6856 $IFS tests to testsuites by Denys Vlasenko · 7 years ago
  16. f693b60 hush: fix recent breakage from parse_stream() changes by Denys Vlasenko · 7 years ago
  17. 9678636 hush: IFS fixes by Denys Vlasenko · 7 years ago
  18. 3417995 hush: fix "$v" expansion in case patterns when v='[a]' by Denys Vlasenko · 7 years ago
  19. 680c301 ash: parser: Allow newlines within parameter substitution by Denys Vlasenko · 7 years ago
  20. 89e9d55 hush: do not drop backslash from eval 'echo ok\' by Denys Vlasenko · 7 years ago
  21. 41d8f10 hush: fix corner cases with exec in empty expansions by Denys Vlasenko · 7 years ago
  22. fbf4485 hush: support "f() (cmd)" functions by Denys Vlasenko · 7 years ago
  23. 5fa0505 hush: fix "set -e; false || x=1; echo OK" by Denys Vlasenko · 7 years ago
  24. f50e146 ash: parser: Fix parameter expansion inside inner double quotes by Denys Vlasenko · 7 years ago
  25. abf7556 hush: fix a backslash-removal bug in case by Denys Vlasenko · 7 years ago
  26. 9a95df9 ash: expand: Fix bugs with words connected to the right of $@ by Denys Vlasenko · 7 years ago
  27. c4c2012 ash: parser: Fix single-quoted patterns in here-documents by Denys Vlasenko · 7 years ago
  28. 216913c ash: parser: Add syntax stack for recursive parsing by Denys Vlasenko · 7 years ago
  29. 41fddb4 parser: Fix backquote support in here-document EOF mark by Denys Vlasenko · 7 years ago
  30. 1e5111b ash,hush: handle a few more bkslash-newline cases by Denys Vlasenko · 7 years ago
  31. 32e183e shells: fix var_LINENO1.tests false positive, add it to ash tests too by Denys Vlasenko · 7 years ago
  32. 220be53 ash: use pgetc_eatbnl() in more places by Denys Vlasenko · 7 years ago
  33. 7352307 ash,hush: new test dollar_repl_slash_bash2.tests by Denys Vlasenko · 7 years ago
  34. 9acd63c ash,hush: fix "saved" redirected fds still visible in children by Denys Vlasenko · 7 years ago
  35. d4802c6 hush: fix a='a\\'; echo "${a%\\\\}" by Denys Vlasenko · 7 years ago
  36. 55f8133 shell: tweak bkslash_in_varexp.tests, add bkslash_in_varexp1.tests by Denys Vlasenko · 7 years ago
  37. 744a20d shell: two new tests, both fail for ash and hush by Denys Vlasenko · 7 years ago
  38. 8de5b9f ash : fix double-quoted "\z" handling by Denys Vlasenko · 7 years ago
  39. f19e3c1 shell: handle $((NUM++...) like bash does. Closes 10706 by Denys Vlasenko · 7 years ago
  40. 675d24a ash: add LINENO support by Denys Vlasenko · 7 years ago
  41. 043be55 ash testsuite: add two hush tests from last commit by Denys Vlasenko · 7 years ago
  42. aea52e7 shell: echo ${?:0} was fixed sometime ago, enable it in tests by Denys Vlasenko · 7 years ago
  43. 9809a82 hush: fix raw ^C handlisg in single-quoted strings by Denys Vlasenko · 7 years ago
  44. 1f19112 hush: fix handling of ^C in eval by Denys Vlasenko · 7 years ago
  45. 932b997 hush: fix handling of raw ^C in scripts: "echo ^C" by Denys Vlasenko · 7 years ago
  46. a5060b8 ash: fix nofork bug where environment is not properly passed to a command by Denys Vlasenko · 7 years ago
  47. 25f3b73 hush: fix comment parsing in `cmd`, closes 10421 by Denys Vlasenko · 7 years ago
  48. 238ff98 hush: fix "getopts" builtin to not be upset by other builtins calling getopt() by Denys Vlasenko · 7 years ago
  49. c2aea02 ash: update testsuite (we now error out on ${#=}) by Denys Vlasenko · 7 years ago
  50. 007ce9f shell: tweak getopts tests, no code changes by Denys Vlasenko · 7 years ago
  51. 419db03 hush: implement "silent" optstrings of ":opts" by Denys Vlasenko · 7 years ago
  52. 129e1ce hush: add a test which fails due to uclibc bug in getopt() by Denys Vlasenko · 7 years ago
  53. 9a7d0a0 shell: add OPTARG poisoning to getopt_optarg.tests by Denys Vlasenko · 7 years ago
  54. 81f962f hush: teach getopts to set/unset OPTARG by Denys Vlasenko · 7 years ago
  55. 74d4058 hush: getopts builtin by Denys Vlasenko · 7 years ago
  56. 4628945 ash: fix "unset OPTIND" throwing an error message by Denys Vlasenko · 7 years ago
  57. 3970120 hush: do not accept "if() { echo; }" function def by Denys Vlasenko · 7 years ago
  58. 95f7953 do not use `a' quoting style in comments by Denys Vlasenko · 7 years ago
  59. 5b3d2eb hush: fix "true | func_with_return" not allowing return. by Denys Vlasenko · 7 years ago
  60. 75481d3 hush: functions have priority over builtins (!) by Denys Vlasenko · 7 years ago
  61. 035486c ash: significant overhaul of redirect saving logic by Denys Vlasenko · 7 years ago
  62. 0f018b3 hush: fix handling of empty heredoc EOF marker by Denys Vlasenko · 7 years ago
  63. a732898 ash: [PARSER] Removed noexpand/length check on eofmark by Denys Vlasenko · 7 years ago
  64. b0648b0 shell: remove ${#+} tests, it is not a valid construct by Denys Vlasenko · 7 years ago
  65. 2093ad2 hush: fix ${##}, ${#?}, ${#!} handling by Denys Vlasenko · 7 years ago
  66. b28d4c3 ash: [VAR] Move unsetvar functionality into setvareq by Denys Vlasenko · 7 years ago
  67. be669fa ash: import param_expand_default.tests from hush by Denys Vlasenko · 7 years ago
  68. 645c697 hush: treat ${#?} as "length of $?" by Denys Vlasenko · 7 years ago
  69. 6492538 ash: add a few tests from hush-vars/* by Denys Vlasenko · 7 years ago
  70. 8d2191c ash: copy three tests from hush_test/hush-signals/* by Denys Vlasenko · 7 years ago
  71. ca50caa shell: some additions to *sh-misc/* tests by Denys Vlasenko · 7 years ago
  72. 4a1d8f6 ash: add most of hush process subst tests by Denys Vlasenko · 7 years ago
  73. e34dbc4 ash: add all hush parsing tests to ast tests by Denys Vlasenko · 7 years ago
  74. 0eed355 ash: suppress readonly1.tests false positive; add readonly0.tests by Denys Vlasenko · 7 years ago
  75. 42ba757 ash: improve set -x to quote strings as necessary by Denys Vlasenko · 7 years ago
  76. eae1268 shell: optional support for read -t N.NNN, closes 10101 by Denys Vlasenko · 7 years ago
  77. 826360f ash: more general format ${var:EXPR:EXPR} by Denys Vlasenko · 7 years ago
  78. 9f904a2 shell: and_or_and_backgrounding.tests is no longer "UNFIXED BUG" by Denys Vlasenko · 7 years ago
  79. ee553b9 hush: fix and_or_and_backgrounding.tests failure by Denys Vlasenko · 7 years ago
  80. 840a435 hush: fix "(sleep 1; exit 3) & sleep 2; echo $?; wait $!; echo $?" by Denys Vlasenko · 7 years ago
  81. 111cdcf shell: sync redir/* tests by Denys Vlasenko · 7 years ago
  82. 1ff1a75 ash: rename redir5.tests (hush has redir5.tests which is different) by Denys Vlasenko · 7 years ago
  83. e59591a hush: Print error messages on shift -1 by Denys Vlasenko · 7 years ago
  84. 74d20e6 typo fix by Denys Vlasenko · 7 years ago
  85. 5dad7bd hush: implement negative start in the ${v: -n[:m]} idiom by Denys Vlasenko · 7 years ago
  86. 3234045 hush: "adopt" ash var-utf8-length.tests by Denys Vlasenko · 7 years ago
  87. b18b04c shell: remove duplicate sigint1.tests (another copies are in signals/) by Denys Vlasenko · 7 years ago
  88. cafb2d1 hush: add tickquote1.tests from ash testsuite by Denys Vlasenko · 7 years ago
  89. bb963bd shell: syncronize ash and hush heredoc3.tests by Denys Vlasenko · 7 years ago
  90. 959cb67 shell: syncronize ash and hush heredoc1.tests by Denys Vlasenko · 7 years ago
  91. 9a8ece5 shell: syncronize ash_test/run-all and hush_test/run-all a bit by Denys Vlasenko · 7 years ago
  92. 4142f01 ash: fix escaping of a few characters (broken by last commits) by Denys Vlasenko · 7 years ago
  93. fda9faf ash: fix matching of unicode greek letter rho (cf 81) and similar cases by Denys Vlasenko · 7 years ago
  94. 2e989ef msh: delete this applet by Denys Vlasenko · 7 years ago
  95. f547041 ash,hush: fix SIGCHLD interrupting read builtin by Denys Vlasenko · 8 years ago
  96. 10ad622 Spelling fixes in comments, documentation, tests and examples by Denys Vlasenko · 8 years ago
  97. 2b15590 hush: fix a bug in argv restoration after sourcing a file by Denys Vlasenko · 8 years ago
  98. 86584e1 ash: fix open fds leaking in redirects. Closes 9561 by Denys Vlasenko · 8 years ago
  99. ea7d2f6 ash: fix error code regression by Ron Yorston · 8 years ago
  100. 02affb4 hush: rework "wait %jobspec" to work in non-interactive shells too by Denys Vlasenko · 8 years ago