Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2023-06-25shell/math: bash-compatible handling of too large numbersDenys Vlasenko
2023-06-18shell: typo fix in testsDenys Vlasenko
2023-06-16shell/math: fix ?: to not evaluate not-taken branchesDenys Vlasenko
2023-06-15shell: document another arithmetic discrepancy with bashDenys Vlasenko
2023-06-15shell/math: remove special code to handle a?b?c:d:e, it works without it nowDenys Vlasenko
2023-06-15shell/math: fix parsing of ?: and explain why it's parsed that wayDenys Vlasenko
2023-06-14shell: sync ash/hush test scriptsDenys Vlasenko
2023-06-14shell/math: fix nested ?: and do not parse variables in not-taken branchDenys Vlasenko
2023-06-14shell/math: document ternary ?: op's weirdness, add code commentsDenys Vlasenko
2023-06-13shell: add a few yet-failing arithmentic testsDenys Vlasenko
2023-06-12hush: fix expansion of space in "a=${a:+$a }c" constructDenys Vlasenko
2023-05-25hush: fix ELIF cmd1;cmd2 THEN ... not executing cmd2, closes 15571Denys Vlasenko
2023-03-31ash: improve trap and jobs builtins in child shellsRon Yorston
2022-08-02ash: fix ifs cleanup on error pathsDenys Vlasenko
2022-03-01ash: don't read past end of var in subvareval for bash substitutionsSören Tempel
2021-10-11shell: fix script's comm field if ENABLE_FEATURE_PREFER_APPLETS=yDenys Vlasenko
2021-09-26shell: fix parsing of $(( (v)++ + NUM ))Denys Vlasenko
2021-09-25shell: enable more tests which are passing nowDenys Vlasenko
2021-09-25shell: fix arithmentic evaluation of "++7" and such (it is + + 7, i.e. 7)Denys Vlasenko
2021-09-08ash: parser: Fix alias expansion after heredoc or newlinesDenys Vlasenko
2021-09-07shell/ash_test/run-all: unset locale/language variablesDenys Vlasenko
2021-09-07ash: LINENO starts from 0 in -c SCRIPT modeDenys Vlasenko
2021-09-07ash: fix LINENO in functionsDenys Vlasenko
2021-09-07ash: support testsuite for !FEATURE_SUID_CONFIG_QUIET configsDenys Vlasenko
2021-09-07hush: fix set -n to act immediately, not just after run_list()Denys Vlasenko
2021-09-07ash: eval: Do not cache value of eflag in evaltreeDenys Vlasenko
2021-09-07ash: eval: Check nflag in evaltree instead of cmdloopDenys Vlasenko
2021-07-27shell: update psubst testcasesDenys Vlasenko
2021-07-25ahell: update testsuiteDenys Vlasenko
2021-06-19hush: fix bkslash+newline handling and number validation in ${NN} and ${#NN}Denys Vlasenko
2021-06-15hush: fix handling of \^C and "^C"Denys Vlasenko
2021-06-06ash: add process substitution in bash-compatibility modeRon Yorston
2021-01-09ash: match bash behavior for ${empty_var/*/repl}Denys Vlasenko
2021-01-09ash: fix ${unset_var/pattern/repl}Denys Vlasenko
2020-12-25typo fixDenys Vlasenko
2020-12-25hush: fix this case: echo "SCRIPT" | hushDenys Vlasenko
2020-10-24hush: output bash-compat killing signal namesDenys Vlasenko
2020-09-29shell: add testsuite for "wait $pid" waiting for other tasksDenys Vlasenko
2020-07-31shell: Fix "read -d ''" behaviorChristian Eggers
2020-02-26shells: fix exitcode_trapN tests to avoid racesDenys Vlasenko
2020-02-22ash: Expand here-documents in the current shell environmentDenys Vlasenko
2020-02-21ash: expand: Ensure result is escaped in cvtnumDenys Vlasenko
2020-02-21hush: make "exit" in trap use pre-trap exitcode - fix for nested trapDenys Vlasenko
2020-02-20hush: implement "return NUM in trap sets $? after trap"Denys Vlasenko
2020-02-20ash: eval: Fail immediately with redirections errors for simple commandDenys Vlasenko
2020-02-19ash,hush: testcase for "exit" without arguments in a trapDenys Vlasenko
2020-02-17ash: expand: Fix trailing newlines processing in backquote expandingDenys Vlasenko
2020-02-17ash: parser: Only accept single-digit parameter expansion outside of bracesDenys Vlasenko
2020-02-16ash: [BUILTIN] Exit without arguments in a trap should use status outside trapsDenys Vlasenko
2019-11-01hush: restore redirected stdinDenys Vlasenko