<feed xmlns='http://www.w3.org/2005/Atom'>
<title>zsh/Test/comptest, branch master</title>
<subtitle>[no description]</subtitle>
<id>http://git.sudomsg.com/mirror/zsh/atom/Test/comptest?h=master</id>
<link rel='self' href='http://git.sudomsg.com/mirror/zsh/atom/Test/comptest?h=master'/>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/'/>
<updated>2026-07-08T20:41:08Z</updated>
<entry>
<title>54913: comptest: prefer $TMPDIR for temp files</title>
<updated>2026-07-08T20:41:08Z</updated>
<author>
<name>dana</name>
<email>dana@dana.is</email>
</author>
<published>2026-07-08T20:41:05Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=cb6dd66e939a3a860d09ef4f274947cd51dfda75'/>
<id>urn:sha1:cb6dd66e939a3a860d09ef4f274947cd51dfda75</id>
<content type='text'>
</content>
</entry>
<entry>
<title>54805: capture any DPUTS output during completion tests</title>
<updated>2026-06-23T04:29:59Z</updated>
<author>
<name>Philippe Altherr</name>
<email>philippe.altherr@gmail.com</email>
</author>
<published>2026-06-23T04:13:39Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=886ec5fa7f11da6f6e2768c7df2592af6df6eb85'/>
<id>urn:sha1:886ec5fa7f11da6f6e2768c7df2592af6df6eb85</id>
<content type='text'>
</content>
</entry>
<entry>
<title>51860: simplify suffix handling in _prefix to remove less accurate hack</title>
<updated>2023-06-22T20:13:09Z</updated>
<author>
<name>Marlon Richert</name>
<email>marlon.richert@gmail.com</email>
</author>
<published>2023-06-22T20:13:09Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=6c993144bde84e145800ff007b1c698a867c7196'/>
<id>urn:sha1:6c993144bde84e145800ff007b1c698a867c7196</id>
<content type='text'>
This solves the following problems in the _prefix completer:
- The old code had logic for dealing with compstate[unambiguous] that
  was unnecessary. It works fine without it.
- Because of this logic, if a widget set compstate[insert]=1 after
  calling _main_complete, an `x` was left after the completion on the
  command line.
- If the same widget also set `compstate[to_end]=`, then instead, the
  last character of the inserted completion would be treated as an
  autoremovable suffix, with the actual suffix being inserted to the
  line as a normal character.
- After inserting a completion, the cursor would move to the end of the
  entire current word on the command, not the end of word that was
  inserted. This is not what you want with _prefix, since you are trying
  to complete a word _before_ the one on the command line, after which
  you usually want to insert a separator, such as a space or slash,
  before the next word.
</content>
</entry>
<entry>
<title>48413: Fix _expand completion test</title>
<updated>2021-04-06T11:59:43Z</updated>
<author>
<name>Marlon Richert</name>
<email>marlon.richert@gmail.com</email>
</author>
<published>2021-04-06T11:29:26Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=aaf619cc22b0c2bf431be9c3d1d13d90585a17d3'/>
<id>urn:sha1:aaf619cc22b0c2bf431be9c3d1d13d90585a17d3</id>
<content type='text'>
</content>
</entry>
<entry>
<title>46189: Ignore exit status of final zpty_flush in comptesteval</title>
<updated>2020-07-07T16:36:11Z</updated>
<author>
<name>Bart Schaefer</name>
<email>schaefer@ipost.com</email>
</author>
<published>2020-07-07T16:36:11Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=126a3158d5ba9b10bef23f7bdacdf910980dfbaa'/>
<id>urn:sha1:126a3158d5ba9b10bef23f7bdacdf910980dfbaa</id>
<content type='text'>
</content>
</entry>
<entry>
<title>46174/0002: test harness: Restore indentation after the previous commit. No functional change.</title>
<updated>2020-07-05T11:11:22Z</updated>
<author>
<name>Daniel Shahaf</name>
<email>d.s@daniel.shahaf.name</email>
</author>
<published>2020-07-02T17:48:08Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=805b946b53c881717d2188cba994629a79185bac'/>
<id>urn:sha1:805b946b53c881717d2188cba994629a79185bac</id>
<content type='text'>
</content>
</entry>
<entry>
<title>46174/0001: test harness: Plug a symlink attack</title>
<updated>2020-07-05T11:11:22Z</updated>
<author>
<name>Daniel Shahaf</name>
<email>d.s@daniel.shahaf.name</email>
</author>
<published>2020-07-02T17:40:18Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=63fde0b744130d95e463299e204ddc5c46199b08'/>
<id>urn:sha1:63fde0b744130d95e463299e204ddc5c46199b08</id>
<content type='text'>
The test harness created tempfiles with a predictable names and sourced
them without verifying they had been created by itself.  This opened
anyone who ran the test suite to a symlink attacks from other local
users on the build machine.

Fix this by creating the file whilst NO_CLOBBER and ERR_EXIT are both in
scope, to ensure that we'll abort unless the file really was created as
expected.

Put the existing rm(1) call in a try/always block to help it be unlinked
on test failures, thus reducing the chances of the NO_CLOBBER check
triggering on tempfiles created by earlier test suite runs.

I had first tried to fix this by using the
.
    () { ... } =(:)
.
idiom, but couldn't get that to work: it broke the %prep code of X03
with ZTST_verbose unset (its default value) but not with ZTST_verbose=3.
(I tried to set the latter to debug zpty_flush.)

While there, add a needed-in-principle-but-noop-in-this-specific-case (q).

Indentation will be restored in the next commit.
</content>
</entry>
<entry>
<title>37378: New bindkey tests.</title>
<updated>2015-12-10T17:51:41Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@zsh.org</email>
</author>
<published>2015-12-10T17:51:41Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=a5233fd01e9ab4953b7ff8b4cc031485b414b8e3'/>
<id>urn:sha1:a5233fd01e9ab4953b7ff8b4cc031485b414b8e3</id>
<content type='text'>
Also fix Meta bug on pattern match in zpty -r.
</content>
</entry>
<entry>
<title>37181: consistent use of zmodload and corresponding ZTST_unimplemented or ZTST_skip</title>
<updated>2015-11-22T07:56:25Z</updated>
<author>
<name>Barton E. Schaefer</name>
<email>schaefer@zsh.org</email>
</author>
<published>2015-11-22T07:56:25Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=b1688305cc83e63104d4c581f649bbdcffa0e3b8'/>
<id>urn:sha1:b1688305cc83e63104d4c581f649bbdcffa0e3b8</id>
<content type='text'>
</content>
</entry>
<entry>
<title>34774: fix %prep and use read from a no-op pipe to force wait for the timeout</title>
<updated>2015-03-25T16:57:23Z</updated>
<author>
<name>Barton E. Schaefer</name>
<email>schaefer@zsh.org</email>
</author>
<published>2015-03-25T16:57:23Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=158484941ac1ff20ce93e4aff46fef6cd22dbf91'/>
<id>urn:sha1:158484941ac1ff20ce93e4aff46fef6cd22dbf91</id>
<content type='text'>
</content>
</entry>
<entry>
<title>34772: add new test suite file for history; fix "read" usage in comptest</title>
<updated>2015-03-24T04:18:58Z</updated>
<author>
<name>Barton E. Schaefer</name>
<email>schaefer@zsh.org</email>
</author>
<published>2015-03-24T04:18:58Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=13bad92fd85c4e4a3077080606f6ad6217b29bd5'/>
<id>urn:sha1:13bad92fd85c4e4a3077080606f6ad6217b29bd5</id>
<content type='text'>
</content>
</entry>
<entry>
<title>33829: unbind ESC~ as a more reliable workaround</title>
<updated>2014-12-07T07:31:48Z</updated>
<author>
<name>Jun-ichi Takimoto</name>
<email>takimoto-j@kba.biglobe.ne.jp</email>
</author>
<published>2014-12-07T07:14:29Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=0da4b11add14e01469c7b60730b390e7ba3ef70b'/>
<id>urn:sha1:0da4b11add14e01469c7b60730b390e7ba3ef70b</id>
<content type='text'>
</content>
</entry>
<entry>
<title>33769: workaround for KEYTIMEOUT to work from test</title>
<updated>2014-11-25T21:49:14Z</updated>
<author>
<name>Jun T</name>
<email>takimoto-j@kba.biglobe.ne.jp</email>
</author>
<published>2014-11-25T21:48:53Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=c4110f7f4eac347fdbce71c286659a77beb138f7'/>
<id>urn:sha1:c4110f7f4eac347fdbce71c286659a77beb138f7</id>
<content type='text'>
cases on Darwin and FreeBSD
</content>
</entry>
<entry>
<title>33704: keybindings, documentation, tests and minor</title>
<updated>2014-11-17T22:01:00Z</updated>
<author>
<name>Oliver Kiddle</name>
<email>opk@zsh.org</email>
</author>
<published>2014-11-17T22:00:49Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=d29e02c1a30c136cbd8847a4dc4628da90566716'/>
<id>urn:sha1:d29e02c1a30c136cbd8847a4dc4628da90566716</id>
<content type='text'>
fixes for vim style visual selection changes
</content>
</entry>
<entry>
<title>33699: support short delays in zle tests where we</title>
<updated>2014-11-17T15:29:10Z</updated>
<author>
<name>Oliver Kiddle</name>
<email>opk@zsh.org</email>
</author>
<published>2014-11-17T15:19:12Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=c95c2ac838e04e507f8e4d9bd0ed4d966306a9b9'/>
<id>urn:sha1:c95c2ac838e04e507f8e4d9bd0ed4d966306a9b9</id>
<content type='text'>
need KEYTIMEOUT to elapse
</content>
</entry>
<entry>
<title>33695: fix various vi-indent problems and vi-swap-case on a blank line</title>
<updated>2014-11-15T20:27:44Z</updated>
<author>
<name>Oliver Kiddle</name>
<email>opk@zsh.org</email>
</author>
<published>2014-11-15T20:27:44Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=f26abf3a1733b31e2f24c15b07e7c64b1659d95d'/>
<id>urn:sha1:f26abf3a1733b31e2f24c15b07e7c64b1659d95d</id>
<content type='text'>
</content>
</entry>
<entry>
<title>33599: workaround zpty issue that causes vi test</title>
<updated>2014-11-09T21:06:52Z</updated>
<author>
<name>Jun T</name>
<email>takimoto-j@kba.biglobe.ne.jp</email>
</author>
<published>2014-11-09T21:06:06Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=c9804bebd897fe822053f8631aed1de970120f9d'/>
<id>urn:sha1:c9804bebd897fe822053f8631aed1de970120f9d</id>
<content type='text'>
cases to fail on MacOS and FreeBSD
</content>
</entry>
<entry>
<title>32497: avoid using comptesteval in the middle of a series of tests</title>
<updated>2014-03-18T16:57:47Z</updated>
<author>
<name>Barton E. Schaefer</name>
<email>schaefer@zsh.org</email>
</author>
<published>2014-03-18T16:57:47Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=da57ddb7c8435c78a072c4d07672d6f68f2c6680'/>
<id>urn:sha1:da57ddb7c8435c78a072c4d07672d6f68f2c6680</id>
<content type='text'>
The change in control required for sourcing the command file can confuse
the simulated interactive input
</content>
</entry>
<entry>
<title>32389 (with Jun Takimoto): additional PTY and keybinding adjustments</title>
<updated>2014-02-15T21:45:35Z</updated>
<author>
<name>Barton E. Schaefer</name>
<email>schaefer@zsh.org</email>
</author>
<published>2014-02-15T21:45:35Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=ae0b56cdda382732abc7c657e14f36a1e3d4d302'/>
<id>urn:sha1:ae0b56cdda382732abc7c657e14f36a1e3d4d302</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fix character transposition typo</title>
<updated>2014-02-13T16:25:09Z</updated>
<author>
<name>Barton E. Schaefer</name>
<email>schaefer@zsh.org</email>
</author>
<published>2014-02-13T16:25:09Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=7274ea8c494c3033b3ea01f828d4d21fa511ed9a'/>
<id>urn:sha1:7274ea8c494c3033b3ea01f828d4d21fa511ed9a</id>
<content type='text'>
</content>
</entry>
<entry>
<title>32377: change keybindings and PTY control for vi-mode tests to make them more reliable</title>
<updated>2014-02-13T16:23:32Z</updated>
<author>
<name>Barton E. Schaefer</name>
<email>schaefer@zsh.org</email>
</author>
<published>2014-02-13T16:23:32Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=5c89c4ca9c1303add65b1927b94d95c72be2e096'/>
<id>urn:sha1:5c89c4ca9c1303add65b1927b94d95c72be2e096</id>
<content type='text'>
</content>
</entry>
<entry>
<title>32355: document and test vi mode undo changes</title>
<updated>2014-02-05T22:18:26Z</updated>
<author>
<name>Oliver Kiddle</name>
<email>okiddle@yahoo.co.uk</email>
</author>
<published>2014-02-05T22:18:26Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=137b15a44704917ff2d765d574714accc7e3d5b1'/>
<id>urn:sha1:137b15a44704917ff2d765d574714accc7e3d5b1</id>
<content type='text'>
</content>
</entry>
<entry>
<title>unposted:  move path assignment from comptest to Y01completion.ztst</title>
<updated>2013-12-27T00:04:30Z</updated>
<author>
<name>Barton E. Schaefer</name>
<email>schaefer@zsh.org</email>
</author>
<published>2013-12-27T00:04:30Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=083328e697ba4251520c8fa42fe386174c5a41e5'/>
<id>urn:sha1:083328e697ba4251520c8fa42fe386174c5a41e5</id>
<content type='text'>
</content>
</entry>
<entry>
<title>32183: regression tests for 32182 and 31611</title>
<updated>2013-12-26T00:27:04Z</updated>
<author>
<name>Barton E. Schaefer</name>
<email>schaefer@zsh.org</email>
</author>
<published>2013-12-26T00:27:04Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=d83faa9d9955b6b449a91e16700155b144c56a50'/>
<id>urn:sha1:d83faa9d9955b6b449a91e16700155b144c56a50</id>
<content type='text'>
</content>
</entry>
<entry>
<title>32137: set pseudo-terminal speed to prevent padding characters</title>
<updated>2013-12-17T06:18:01Z</updated>
<author>
<name>J. Takimoto</name>
<email>takimoto@yz.yamagata-u.ac.jp</email>
</author>
<published>2013-12-17T06:18:01Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=b9da4efea7b33490333b778daf37d60d535416be'/>
<id>urn:sha1:b9da4efea7b33490333b778daf37d60d535416be</id>
<content type='text'>
</content>
</entry>
<entry>
<title>31041: add support for testing line editor widgets from the test suite</title>
<updated>2013-02-12T10:55:32Z</updated>
<author>
<name>Oliver Kiddle</name>
<email>opk@users.sourceforge.net</email>
</author>
<published>2013-02-12T10:55:32Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=b6544d1ef3312cc133da648d290d2ec2866c277d'/>
<id>urn:sha1:b6544d1ef3312cc133da648d290d2ec2866c277d</id>
<content type='text'>
</content>
</entry>
<entry>
<title>26301: make zpty -r exit more cleanly on bad reads</title>
<updated>2009-01-13T12:09:26Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2009-01-13T12:09:26Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=e7c9e03c58f04a04c35a0e4c3721f939ba5e58c2'/>
<id>urn:sha1:e7c9e03c58f04a04c35a0e4c3721f939ba5e58c2</id>
<content type='text'>
add option -m to make zpty -r return status 1 if pattern failed to match
use this option in comptest
</content>
</entry>
<entry>
<title>unposted, c.f. 25848: attempt to sanitize comptest environment</title>
<updated>2008-10-12T19:20:00Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2008-10-12T19:20:00Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=51b6ff2723265978da8c96a17b0f8afec7b65aac'/>
<id>urn:sha1:51b6ff2723265978da8c96a17b0f8afec7b65aac</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Assorted "make check" tweaks.</title>
<updated>2001-06-25T03:06:33Z</updated>
<author>
<name>Bart Schaefer</name>
<email>barts@users.sourceforge.net</email>
</author>
<published>2001-06-25T03:06:33Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=50f88338e67084fa31be6843d47bd4d675458e7a'/>
<id>urn:sha1:50f88338e67084fa31be6843d47bd4d675458e7a</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Avoid echotc in completion tests.</title>
<updated>2001-06-09T17:25:56Z</updated>
<author>
<name>Bart Schaefer</name>
<email>barts@users.sourceforge.net</email>
</author>
<published>2001-06-09T17:25:56Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=02a3c7292bc73fbf642940dd985b8996756eb1c3'/>
<id>urn:sha1:02a3c7292bc73fbf642940dd985b8996756eb1c3</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fix "make check" in emacs shell mode.</title>
<updated>2001-06-08T03:02:46Z</updated>
<author>
<name>Bart Schaefer</name>
<email>barts@users.sourceforge.net</email>
</author>
<published>2001-06-08T03:02:46Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=956fd2a76c160c86cefd1245000f9e0303ae5ba6'/>
<id>urn:sha1:956fd2a76c160c86cefd1245000f9e0303ae5ba6</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fixes from Andrej for zpty on cygwin</title>
<updated>2001-05-08T10:26:58Z</updated>
<author>
<name>Peter Stephenson</name>
<email>pws@users.sourceforge.net</email>
</author>
<published>2001-05-08T10:26:58Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=8ff0785863b5875fc10321b7da02a2ad3e7b76eb'/>
<id>urn:sha1:8ff0785863b5875fc10321b7da02a2ad3e7b76eb</id>
<content type='text'>
</content>
</entry>
<entry>
<title>(13892) fixes for fpaths and completion matching</title>
<updated>2001-04-03T11:25:11Z</updated>
<author>
<name>Sven Wischnowsky</name>
<email>wischnow@users.sourceforge.net</email>
</author>
<published>2001-04-03T11:25:11Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=6150ef8696a3081772122743eb650d8449d4f7a3'/>
<id>urn:sha1:6150ef8696a3081772122743eb650d8449d4f7a3</id>
<content type='text'>
</content>
</entry>
<entry>
<title>13442: Use +Z to suppress loading of ZLE modules when testing.</title>
<updated>2001-02-08T03:29:58Z</updated>
<author>
<name>Bart Schaefer</name>
<email>barts@users.sourceforge.net</email>
</author>
<published>2001-02-08T03:29:58Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=db3d3e2b271f2e49e191efaa80e91643ec7aae1d'/>
<id>urn:sha1:db3d3e2b271f2e49e191efaa80e91643ec7aae1d</id>
<content type='text'>
</content>
</entry>
<entry>
<title>zsh-workers/13395: Added code to test compstate[insert_positions], value of insert_positions are now reported</title>
<updated>2001-01-28T19:37:30Z</updated>
<author>
<name>Felix Rosencrantz</name>
<email>f_rosencrantz@users.sourceforge.net</email>
</author>
<published>2001-01-28T19:37:30Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=5c111766c1e772e934e030e6d03f399100b4b845'/>
<id>urn:sha1:5c111766c1e772e934e030e6d03f399100b4b845</id>
<content type='text'>
</content>
</entry>
<entry>
<title>make non-blocking IO on ptys work again; add -t option to test if command is still alive (13035)</title>
<updated>2000-10-19T08:46:54Z</updated>
<author>
<name>Sven Wischnowsky</name>
<email>wischnow@users.sourceforge.net</email>
</author>
<published>2000-10-19T08:46:54Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=16d7e31ae81bdd87dd90ce91d9072006e43f6596'/>
<id>urn:sha1:16d7e31ae81bdd87dd90ce91d9072006e43f6596</id>
<content type='text'>
</content>
</entry>
<entry>
<title>12151: Fix ZDOTDIR during "make check" for static builds.</title>
<updated>2000-07-04T00:45:07Z</updated>
<author>
<name>Bart Schaefer</name>
<email>barts@users.sourceforge.net</email>
</author>
<published>2000-07-04T00:45:07Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=715278d0631c1a165d2b9aae8e3650e1d7c2ad02'/>
<id>urn:sha1:715278d0631c1a165d2b9aae8e3650e1d7c2ad02</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fix comptest interaction with compinit.</title>
<updated>2000-06-22T17:33:38Z</updated>
<author>
<name>Bart Schaefer</name>
<email>barts@users.sourceforge.net</email>
</author>
<published>2000-06-22T17:33:38Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=122e46b406f57712158651d8f559f52bbd3227e1'/>
<id>urn:sha1:122e46b406f57712158651d8f559f52bbd3227e1</id>
<content type='text'>
</content>
</entry>
<entry>
<title>update comptest to not set ZLS_COLORS directly (11982)</title>
<updated>2000-06-19T12:16:34Z</updated>
<author>
<name>Sven Wischnowsky</name>
<email>wischnow@users.sourceforge.net</email>
</author>
<published>2000-06-19T12:16:34Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=030130366618816fdf35ac4d18d85fe8d959dd98'/>
<id>urn:sha1:030130366618816fdf35ac4d18d85fe8d959dd98</id>
<content type='text'>
</content>
</entry>
<entry>
<title>fix wording in error messages for tests (11755)</title>
<updated>2000-06-05T23:06:52Z</updated>
<author>
<name>Oliver Kiddle</name>
<email>opk@users.sourceforge.net</email>
</author>
<published>2000-06-05T23:06:52Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=4e9967dcca02695eb5a62dc15b43e6123329d909'/>
<id>urn:sha1:4e9967dcca02695eb5a62dc15b43e6123329d909</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Felix Rosencrantz: 11450: Replace `tr` with paramsubst.</title>
<updated>2000-05-18T03:33:39Z</updated>
<author>
<name>Bart Schaefer</name>
<email>barts@users.sourceforge.net</email>
</author>
<published>2000-05-18T03:33:39Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=3ce575b0f9b3930848673eaa2ecc6c6c5c63231d'/>
<id>urn:sha1:3ce575b0f9b3930848673eaa2ecc6c6c5c63231d</id>
<content type='text'>
</content>
</entry>
<entry>
<title>11441: Test/comptest, Test/53completion.ztst,</title>
<updated>2000-05-17T12:31:32Z</updated>
<author>
<name>Tanaka Akira</name>
<email>akr@users.sourceforge.net</email>
</author>
<published>2000-05-17T12:31:32Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=20a527fcaa555387a69fe941298d1ab04eccc88b'/>
<id>urn:sha1:20a527fcaa555387a69fe941298d1ab04eccc88b</id>
<content type='text'>
Test/54compmatch.ztst: use only one zsh process to test for each
completion test file.
</content>
</entry>
<entry>
<title>add Felix' completion matching test; some fixes for bugs shown by it (11439)</title>
<updated>2000-05-17T11:59:32Z</updated>
<author>
<name>Sven Wischnowsky</name>
<email>wischnow@users.sourceforge.net</email>
</author>
<published>2000-05-17T11:59:32Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=05d3c175a5f9d1eb7bd8ed5f9c36ff5838ee6b8e'/>
<id>urn:sha1:05d3c175a5f9d1eb7bd8ed5f9c36ff5838ee6b8e</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Initial revision</title>
<updated>2000-02-29T15:51:21Z</updated>
<author>
<name>Tanaka Akira</name>
<email>akr@users.sourceforge.net</email>
</author>
<published>2000-02-29T15:51:21Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/zsh/commit/?id=6513a23fbe0f93cbfa5bacafb7ebdd2765791563'/>
<id>urn:sha1:6513a23fbe0f93cbfa5bacafb7ebdd2765791563</id>
<content type='text'>
</content>
</entry>
</feed>
