zsh-workers
 help / color / mirror / code / Atom feed
* compmatch failure in latest CVS
@ 2000-06-08  0:00 Vin Shelton
  2000-06-08  0:02 ` Bart Schaefer
  0 siblings, 1 reply; 5+ messages in thread
From: Vin Shelton @ 2000-06-08  0:00 UTC (permalink / raw)
  To: zsh-workers

A brand-new spanking update from CVS including this patch from Sven:

2000-06-07  Sven Wischnowsky  <wischnow@zsh.org>

        * 11796: Src/Zle/compmatch.c: try to get the tests for `strings
        long enough' right in anchor matching code

fails make check:

/usr/local/src/zsh-2000-06-07/Test/52zregexparse.ztst: all tests successful.
/usr/local/src/zsh-2000-06-07/Test/53completion.ztst: all tests successful.
*** /tmp/zsh.ztst.out.31654     Wed Jun  7 19:54:08 2000
--- /tmp/zsh.ztst.tout.31654    Wed Jun  7 19:54:08 2000
***************
*** 1,4 ****
! line: {tst FooHoo }{}
  COMPADD:{}
! line: {tst FooHoo 5bar234 }{}
  COMPADD:{}
--- 1,4 ----
! line: {tst H}{}
  COMPADD:{}
! line: {tst H2}{}
  COMPADD:{}
Test /usr/local/src/zsh-2000-06-07/Test/54compmatch.ztst failed: output differs from expected as shown above for:
 example7_matcher="r:[^A-Z0-9]||[A-Z0-9]=** r:|=*"
 example7_list=($example6_list)
 test_code $example7_matcher example7_list
 comptest $'tst H\t2\t'
Was testing: Documentation example using "r:[^A-Z0-9]||[A-Z0-9]=** r:|=*"
/usr/local/src/zsh-2000-06-07/Test/54compmatch.ztst: test failed.


This is on a 686 Mandrake Linux system, in case that matters.

  - vin


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: compmatch failure in latest CVS
  2000-06-08  0:00 compmatch failure in latest CVS Vin Shelton
@ 2000-06-08  0:02 ` Bart Schaefer
  2000-06-08  3:06   ` Vin Shelton
  0 siblings, 1 reply; 5+ messages in thread
From: Bart Schaefer @ 2000-06-08  0:02 UTC (permalink / raw)
  To: Vin Shelton, zsh-workers

On Jun 7,  8:00pm, Vin Shelton wrote:
> This is on a 686 Mandrake Linux system, in case that matters.

And you're sure it's not because of the setopt globcomplete in /etc/zshrc?


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: compmatch failure in latest CVS
  2000-06-08  0:02 ` Bart Schaefer
@ 2000-06-08  3:06   ` Vin Shelton
  2000-06-08  3:17     ` Bart Schaefer
  0 siblings, 1 reply; 5+ messages in thread
From: Vin Shelton @ 2000-06-08  3:06 UTC (permalink / raw)
  To: Bart Schaefer; +Cc: zsh-workers

I have neither a /etc/zshrc, nor a /usr/local/etc/zshrc (which is how
I compile my Z-shells).  I did not install the Mandrake zsh rpm.

Besides, this morning, before Sven's fix, I think the failure was not
present.
  - vin

>>>>> On Wed, 7 Jun 2000 , "Bart Schaefer" <schaefer@candle.brasslantern.com> said:

Bart> On Jun 7,  8:00pm, Vin Shelton wrote:
>> This is on a 686 Mandrake Linux system, in case that matters.

Bart> And you're sure it's not because of the setopt globcomplete in /etc/zshrc?



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: compmatch failure in latest CVS
  2000-06-08  3:06   ` Vin Shelton
@ 2000-06-08  3:17     ` Bart Schaefer
  2000-06-08  3:42       ` Vin Shelton
  0 siblings, 1 reply; 5+ messages in thread
From: Bart Schaefer @ 2000-06-08  3:17 UTC (permalink / raw)
  To: zsh-workers

On Jun 7, 11:06pm, Vin Shelton wrote:
} Subject: Re: compmatch failure in latest CVS
}
} I have neither a /etc/zshrc, nor a /usr/local/etc/zshrc [...]
} Besides, this morning, before Sven's fix, I think the failure was not
} present.

Hrm.  Well, as a data point, "make check" runs cleanly for me (on RedHat
5.2) with all the cvs commits up through 11796.  I configured with:
--enable-dynamic --enable-zsh-debug --enable-zsh-mem --enable-zsh-mem-debug

-- 
Bart Schaefer                                 Brass Lantern Enterprises
http://www.well.com/user/barts              http://www.brasslantern.com

Zsh: http://www.zsh.org | PHPerl Project: http://phperl.sourceforge.net   


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: compmatch failure in latest CVS
  2000-06-08  3:17     ` Bart Schaefer
@ 2000-06-08  3:42       ` Vin Shelton
  0 siblings, 0 replies; 5+ messages in thread
From: Vin Shelton @ 2000-06-08  3:42 UTC (permalink / raw)
  To: Bart Schaefer; +Cc: zsh-workers

I configure my zshes thusly:
    --prefix=/usr/local/zsh-2000-06-07 --datadir=/usr/local/share
    --enable-zsh-mem --enable-etcdir=/usr/local/etc --enable-dynamic
    --disable-nls --disable-locale

>>>>> On Thu, 8 Jun 2000 03:17:06 +0000, "Bart Schaefer" <schaefer@candle.brasslantern.com> said:

Bart> On Jun 7, 11:06pm, Vin Shelton wrote:
Bart> } Subject: Re: compmatch failure in latest CVS
Bart> }
Bart> } I have neither a /etc/zshrc, nor a /usr/local/etc/zshrc [...]
Bart> } Besides, this morning, before Sven's fix, I think the failure was not
Bart> } present.

Bart> Hrm.  Well, as a data point, "make check" runs cleanly for me (on RedHat
Bart> 5.2) with all the cvs commits up through 11796.  I configured with:
Bart> --enable-dynamic --enable-zsh-debug --enable-zsh-mem --enable-zsh-mem-debug

Bart> -- 
Bart> Bart Schaefer                                 Brass Lantern Enterprises
Bart> http://www.well.com/user/barts              http://www.brasslantern.com

Bart> Zsh: http://www.zsh.org | PHPerl Project: http://phperl.sourceforge.net   



^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2000-06-08  3:38 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2000-06-08  0:00 compmatch failure in latest CVS Vin Shelton
2000-06-08  0:02 ` Bart Schaefer
2000-06-08  3:06   ` Vin Shelton
2000-06-08  3:17     ` Bart Schaefer
2000-06-08  3:42       ` Vin Shelton

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).