about summary refs log tree commit diff
path: root/Test
Commit message (Collapse)AuthorAgeFilesLines
* 51738: support pcre's alternative DFA matching algorithmOliver Kiddle2023-05-131-0/+5
|
* 51728: assign pcre named capture groups to a hashOliver Kiddle2023-05-131-0/+14
|
* 51723: migrate pcre module to pcre2Oliver Kiddle2023-05-131-2/+11
|
* 51692: not skip tests for [[ -r/-N file ]] on CygwinJun-ichi Takimoto2023-05-081-7/+1
|
* 51652: fix running of TRAPEXIT explicitly.Peter Stephenson2023-04-171-0/+11
| | | | | | This is a special case where TRAPEXIT is unset within a TRAPEXIT as it should never run in a nested context, so just save the function structure temporarily on the heap.
* 51608: Don't execute commands after "continue &&"Peter Stephenson2023-03-291-0/+36
| | | | Also ! continue ||
* 51510: Skip namespaces in "set"/"typeset" output, add tests, fix bugBart Schaefer2023-03-061-0/+106
|
* 51437: Fix incorrectly-passed test case, masked by unrelated bug.Bart Schaefer2023-02-141-2/+21
| | | | | | A bug with zmodload when unloading/reloading a static module caused the state of the shell options to change during K01 test. Worked around it. Also changed warnnestedvar messages to look more like other such.
* 51424: $(<...) shouldn't try to open a file with NO_EXECPeter Stephenson2023-02-141-0/+3
|
* 51430: Misc. problems with typeset and $parametersBart Schaefer2023-02-131-0/+14
| | | | | | * Fix and test for regression of assignment when using typeset command * Fix output of typeset +m and $parameters[ref] * Prevent segfault in typeset
* 51417: Check subscripts in named reference values more rigorously.Bart Schaefer2023-02-121-2/+2
|
* 51403: Tests and documentation for 51402, clean up some other tests.Bart Schaefer2023-02-121-9/+161
|
* 51374: Expose named references in $parameters, fix substitution error.Bart Schaefer2023-02-122-16/+90
|
* 51361: Tests for 51360.Bart Schaefer2023-02-122-0/+517
|
* 51320, 51383: fixes to prevent later reappearance of old attributesOliver Kiddle2023-02-092-2/+2
| | | | Also associated test updates and a test fix for TERM=dumb.
* 51350: ${(S)...//#%...} didn't match the whole stringPeter Stephenson2023-02-061-0/+7
|
* 51306: error message in ${unset?error} should be expandedPeter Stephenson2023-02-021-0/+5
|
* 51307: Improve error on attempt to define function from aliased namePeter Stephenson2023-02-021-1/+6
|
* unposted (cribbed from users/28784 by Roman): Add XFail tests for ↵Daniel Shahaf2023-01-271-0/+15
| | | | substituting a single-quoting backslash.
* 51278: make (i) subscript flag for zero-length string consistentPeter Stephenson2023-01-161-0/+9
|
* 51297: update expected test results to match more optimised escape sequences ↵Oliver Kiddle2023-01-111-8/+8
| | | | with recent changes
* 51258, 51272: refactor handling of terminal attributes, removing OFF flags ↵Oliver Kiddle2023-01-102-7/+20
| | | | in zattr
* 51214: handle read -d and a delimiter that can't be decoded into a characterOliver Kiddle2022-12-172-0/+18
| | | | | | Terminate input at the raw byte value of the delimiter. Also document and test the use of an empty string as a way to specify NUL as the delimiter.
* 51207: fix for read -d when the delimiter is a byte >= 0x80Jun-ichi Takimoto2022-12-171-0/+6
|
* 51215: consume whole CSI sequences from the inputOliver Kiddle2022-12-162-0/+29
| | | | | | | This affects CSI sequences that aren't explicitly bound but arrive within the usual KEYTIMEOUT time limits. A single undefined-key widget is run instead of unintended bindings for Escape and other characters in the sequence.
* 51134: ! return doesn't change the return statusPeter Stephenson2022-12-121-0/+12
|
* 51076: fix ERR_EXIT when used with "eval" or "source"; documentary commentsPhilippe Altherr2022-12-031-0/+41
|
* 51071: fix ERR_RETURN for functions in conditional statementsPhilippe Altherr2022-12-031-0/+16
|
* 51001: fix for ERR_EXIT following shell function; update testsPhilippe Altherr2022-12-031-0/+82
|
* 51001: fix for ERR_EXIT with pipeline negation ("!"); update testsPhilippe Altherr2022-12-031-0/+15
|
* 51001: fix for ERR_EXIT with "always" blocks; update testsPhilippe Altherr2022-12-031-7/+29
|
* 51001: Reverts 8839e969b, most of 1ba8714a, and d873ed60.Philippe Altherr2022-12-031-5/+10
| | | | Also correct ChangeLog
* 51079: metafy sep in array subscript flag (s:sep:)Jun-ichi Takimoto2022-12-021-0/+5
| | | | this enable sep to contain \0 etc.
* unposted (cf. 51016): Add a test case for underscore-followed-by-digits in ↵Daniel Shahaf2022-11-231-0/+8
| | | | math context.
* 50928: fix tests for 50897, mention behavior change in NEWSBart Schaefer2022-11-091-11/+6
|
* users/28338: command substitution with alias edge case.Peter Stephenson2022-11-081-0/+8
| | | | See added regression test.
* 50668: treat 8bit chars correctly when multibyte is unsetJun-ichi Takimoto2022-09-271-0/+7
| | | | | The problem was found in character range, but may have existed in other occasions
* 50662: unset LC_* for all the testsJun-ichi Takimoto2022-09-261-13/+3
|
* 50658 + test: Enable to switch between C/UTF-8 locales in PCREJun-ichi Takimoto2022-09-261-0/+11
|
* 50629: do not use egrep in testsJun-ichi Takimoto2022-09-157-59/+23
|
* 50342: fix test added by 50306Jun-ichi Takimoto2022-06-091-1/+1
|
* Tweaks to MULTI_FUNC_DEFPeter Stephenson2022-06-071-0/+20
| | | | | | Output multiple function definitions using "function" form. Note exceptions to errors with NO_MULTI_FUNC_DEF
* 50306: fix wait for child that was stopped/continuedJun-ichi Takimoto2022-06-031-0/+7
| | | | do not call addbgstatus() when child is stopped/continued
* Fix problems with tests for 50126 and 50150.Bart Schaefer2022-05-022-1/+5
|
* 50160: Regression tests for 50126, 50136, and 50149Bart Schaefer2022-05-012-0/+26
|
* 50157: Tests for 50150Daniel Shahaf2022-05-011-0/+11
|
* 50159: Tests for sysread, including 50101 regressionBart Schaefer2022-05-011-0/+66
|
* 50089: unset LC_* for multibyte tests in X03zlebindkeyJun-ichi Takimoto2022-04-261-0/+1
|
* unposted (see 50072): check exit status in exit-from-trap testBart Schaefer2022-04-171-1/+1
|
* 50069: ChangeLog and test description for 50068Bart Schaefer2022-04-141-1/+1
|