aboutsummaryrefslogtreecommitdiff
path: root/shell/ash_test
AgeCommit message (Expand)Author
2018-04-11shell: add 6856 $IFS tests to testsuitesDenys Vlasenko
2018-04-11hush: fix recent breakage from parse_stream() changesDenys Vlasenko
2018-04-11hush: IFS fixesDenys Vlasenko
2018-04-11hush: fix "$v" expansion in case patterns when v='[a]'Denys Vlasenko
2018-04-11ash: parser: Allow newlines within parameter substitutionDenys Vlasenko
2018-04-11hush: do not drop backslash from eval 'echo ok\'Denys Vlasenko
2018-04-05hush: fix corner cases with exec in empty expansionsDenys Vlasenko
2018-04-03hush: support "f() (cmd)" functionsDenys Vlasenko
2018-04-03hush: fix "set -e; false || x=1; echo OK"Denys Vlasenko
2018-04-02ash: parser: Fix parameter expansion inside inner double quotesDenys Vlasenko
2018-04-02hush: fix a backslash-removal bug in caseDenys Vlasenko
2018-04-02ash: expand: Fix bugs with words connected to the right of $@Denys Vlasenko
2018-04-02ash: parser: Fix single-quoted patterns in here-documentsDenys Vlasenko
2018-04-02ash: parser: Add syntax stack for recursive parsingDenys Vlasenko
2018-04-01parser: Fix backquote support in here-document EOF markDenys Vlasenko
2018-04-01ash,hush: handle a few more bkslash-newline casesDenys Vlasenko
2018-03-31shells: fix var_LINENO1.tests false positive, add it to ash tests tooDenys Vlasenko
2018-03-31ash: use pgetc_eatbnl() in more placesDenys Vlasenko
2018-03-30ash,hush: new test dollar_repl_slash_bash2.testsDenys Vlasenko
2018-03-28ash,hush: fix "saved" redirected fds still visible in childrenDenys Vlasenko
2018-03-02hush: fix a='a\\'; echo "${a%\\\\}"Denys Vlasenko
2018-03-02shell: tweak bkslash_in_varexp.tests, add bkslash_in_varexp1.testsDenys Vlasenko
2018-03-02shell: two new tests, both fail for ash and hushDenys Vlasenko
2018-02-13ash : fix double-quoted "\z" handlingDenys Vlasenko
2018-01-28shell: handle $((NUM++...) like bash does. Closes 10706Denys Vlasenko
2018-01-27ash: add LINENO supportDenys Vlasenko
2018-01-25ash testsuite: add two hush tests from last commitDenys Vlasenko
2018-01-13shell: echo ${?:0} was fixed sometime ago, enable it in testsDenys Vlasenko
2018-01-13hush: fix raw ^C handlisg in single-quoted stringsDenys Vlasenko
2018-01-11hush: fix handling of ^C in evalDenys Vlasenko
2018-01-11hush: fix handling of raw ^C in scripts: "echo ^C"Denys Vlasenko
2017-11-03ash: fix nofork bug where environment is not properly passed to a commandDenys Vlasenko
2017-10-22hush: fix comment parsing in `cmd`, closes 10421Denys Vlasenko
2017-08-29hush: fix "getopts" builtin to not be upset by other builtins calling getopt()Denys Vlasenko
2017-08-14ash: update testsuite (we now error out on ${#=})Denys Vlasenko
2017-08-13shell: tweak getopts tests, no code changesDenys Vlasenko
2017-08-11hush: implement "silent" optstrings of ":opts"Denys Vlasenko
2017-08-11hush: add a test which fails due to uclibc bug in getopt()Denys Vlasenko
2017-08-11shell: add OPTARG poisoning to getopt_optarg.testsDenys Vlasenko
2017-08-11hush: teach getopts to set/unset OPTARGDenys Vlasenko
2017-08-11hush: getopts builtinDenys Vlasenko
2017-08-11ash: fix "unset OPTIND" throwing an error messageDenys Vlasenko
2017-08-02hush: do not accept "if() { echo; }" function defDenys Vlasenko
2017-08-02do not use `a' quoting style in commentsDenys Vlasenko
2017-07-31hush: fix "true | func_with_return" not allowing return.Denys Vlasenko
2017-07-31hush: functions have priority over builtins (!)Denys Vlasenko
2017-07-31ash: significant overhaul of redirect saving logicDenys Vlasenko
2017-07-29hush: fix handling of empty heredoc EOF markerDenys Vlasenko
2017-07-29ash: [PARSER] Removed noexpand/length check on eofmarkDenys Vlasenko
2017-07-26shell: remove ${#+} tests, it is not a valid constructDenys Vlasenko