summary refs log tree commit diff
path: root/Test
Commit message (Collapse)AuthorAgeFilesLines
* unposted (after 37243): Explain the breadcrumb by adding a comment.Daniel Shahaf2015-11-281-0/+1
|
* 37243: too many problems with inserting a line into B02, instead add a ↵Barton E. Schaefer2015-11-272-5/+5
| | | | | | | placeholder and substitute for it. unposted: %cleanup block is not called when %prep sets ZTST_unimplemented, so avoid leaving a mess
* 37229: non-local assignment to a parameter name whose outermost declaration ↵Barton E. Schaefer2015-11-261-5/+28
| | | | | | is private, is an error rather than a silent no-op. Also fix %prep sed expression for Solaris.
* Comment should say export is equivalent to typeset -xgBarton E. Schaefer2015-11-261-1/+1
|
* 37225: fix test for typeset with zsh/param/privateBarton E. Schaefer2015-11-261-1/+10
|
* 37224: delete obsolete commentBarton E. Schaefer2015-11-261-1/+1
|
* 37208: re-run the "typeset" tests with the private module loadedBarton E. Schaefer2015-11-231-1/+6
|
* 37205: update documentary commentBarton E. Schaefer2015-11-231-7/+7
|
* 37188: New hash builtin testPeter Stephenson2015-11-221-0/+71
|
* 37181: consistent use of zmodload and corresponding ZTST_unimplemented or ↵Barton E. Schaefer2015-11-2115-39/+40
| | | | ZTST_skip
* 20974: Bug with scalar assignment to special array in typesetPeter Stephenson2015-11-201-0/+19
|
* 37128: work around alias expansion trashing subscript parsingPeter Stephenson2015-11-171-0/+17
|
* 37096: Another $${(P)...} tweak.Peter Stephenson2015-11-121-1/+1
| | | | Make a top level (P) work with nested ones, i.e. ${(P)${(P)...}...}
* 37094: Further tweaks to parameter name references.Peter Stephenson2015-11-111-0/+49
| | | | | | | | Safety in array test. Make nested references work. Add parameter tests.
* 37084: add implementation check to zsh/parm/private testPeter Stephenson2015-11-101-0/+3
|
* 37081: new module zsh/param/private for private-scoped parameters in functionsBarton E. Schaefer2015-11-081-0/+265
|
* 37074: extend previous fix to over whitespace at endPeter Stephenson2015-11-071-32/+32
|
* 37073: another SH_WORD_SPLIT problem.Peter Stephenson2015-11-061-0/+54
| | | | | In cases like x${:- y} the space was simply removed instead of being used for splitting.
* unposted (after 37018): Fix typo in error message.Daniel Shahaf2015-10-301-1/+1
|
* 37018: Make WARNCREATEGLOBAL more consistent.Peter Stephenson2015-10-291-3/+3
| | | | | Wd don't need separate math handling any more, and can make it output the function name in all cases.
* 36982: Fix bug with (#cN) patterns and remove redundant description.Peter Stephenson2015-10-272-0/+17
| | | | | We need to restore the current count of matches when returning to match at the point where we previously matched.
* unposted: back out 36707, add test case for 36766Barton E. Schaefer2015-10-031-0/+14
|
* unposted: Test for 36669Daniel Shahaf2015-09-281-0/+6
|
* 36651: WARN_CREATE_GLOBAL += math expressionsDaniel Shahaf2015-09-271-0/+4
| | | | | Without this, '() { (( x=42 )) }' and '() { for (( i=0; … )) }' wouldn't warn about $x and $i, respectively, being created global.
* unposted: fix typo in testPeter Stephenson2015-09-191-1/+1
|
* 36552 plus test: fix Nularg string in quotestring(QT_DOLLARS)Barton E. Schaefer2015-09-171-0/+4
|
* 36491: Multibyte support for parameter expansion flags B,E,NJun-ichi Takimoto2015-09-121-0/+15
|
* 36478: Add [[:INCOMPLETE:]] and [[:INVALID:]] pattern tests.Peter Stephenson2015-09-101-0/+6
|
* 36460: Discard benign error when no one is reading from pipePeter Stephenson2015-09-101-1/+1
|
* 36415: remap bytes from invalid multibyte characters.Peter Stephenson2015-09-041-0/+17
| | | | | | | These now go to 0xdc00 + index. If wchar_t is a Unicode code point, this is by construction an invalid character within the Unicode range. If it isn't, we would hope the result was no worse than the current fudge.
* 36403: type -w += suffix aliasDaniel Shahaf2015-09-031-0/+3
| | | | | | | | This makes 'type -w' distinguish suffix aliases from regular aliases, like bare 'type' already does. Use-case: detecting programmatically whether the command word is indeed a valid command word (see <https://github.com/zsh-users/zsh-syntax-highlighting/issues/126>)
* 36393: process queued signals during dotrap()Barton E. Schaefer2015-09-021-0/+9
|
* 36399: Shell code text with multiple here documents wasn't shown properly.Peter Stephenson2015-09-021-0/+31
|
* 36347: Fix appending empty array to associationsMikael Magnusson2015-09-011-0/+8
|
* users/20466 plus comment: change test for skipping strftime extensions.Peter Stephenson2015-08-281-1/+4
| | | | | | This test is known to fail on Solaris, but seems to work in other common implementations. Hence there seems no point in having the release fall over on this test. Needs further investigation later.
* cf. Axel Beckert 36292: discard even more extraneous stderr in "hang" testBarton E. Schaefer2015-08-271-1/+1
|
* 36282: discard stderr of "hang" testBarton E. Schaefer2015-08-261-1/+1
|
* Test for 36265, no alias expansion after "function"Peter Stephenson2015-08-211-0/+13
|
* 36262: Replace fix for missing unmeta in chdir().Peter Stephenson2015-08-211-0/+12
| | | | | | | It was needed in the argument to one of a pair of lchdir()s rather than within zchdir(). Add tests for the case of a character with 0x83 within it.
* 36241: Test for ztrftime fix, 36227 / f8164fb6.Peter Stephenson2015-08-191-0/+4
| | | | | Check that embedded null characters get passed correctly through the strftime module builtin.
* 36083: set array value when consistently retying scalar and arrayPeter Stephenson2015-08-101-0/+3
|
* 36045: make effect of failures in wait test clearerPeter Stephenson2015-08-101-1/+3
|
* unposted: add tests for outputting traps specified via aliasesMikael Magnusson2015-08-091-0/+11
|
* Fix retying variables in opposite order.Peter Stephenson2015-08-091-0/+5
| | | | | Now gives an error. Add test.
* 35953: fix handling of command substitution in math contextBarton E. Schaefer2015-07-291-0/+6
|
* 35873: add original test for process substitution deadlock from 35847Peter Stephenson2015-07-231-0/+8
|
* 35849: close fd's from process substitution after forkPeter Stephenson2015-07-231-0/+15
| | | | Leaving these hanging in parent could cause deadlock: test added.
* fix another test for 35581Barton E. Schaefer2015-07-221-2/+2
|
* 35581, 35582: output array assignments with spaces inside the parensBarton E. Schaefer2015-07-222-4/+4
|
* 35805: tests for 35799Barton E. Schaefer2015-07-161-0/+14
|