Zsh Mailing List Archive
Messages sorted by: Reverse Date, Date, Thread, Author

PATCH: Re: more test failures



Andrej Borsenkow wrote:

> With zsh-3.1.9-dev-1 after installing zsh and running make check in new
> shell:
> 
> ...
> /tools/src/zsh/Test/52zregexparse.ztst: all tests successful.
> ...
> - DI:{dir1}
> - DI:{dir2}
> - FI:{file1}
> - FI:{file2}
> ...
> - NO:{NOListambiguous}
> - NO:{NOListbeep}
> - NO:{NOListpacked}
> - NO:{NOListrowsfirst}
> - NO:{NOListtypes}
> ...

Uff ;-) I had tested the new bBeE things, even added tests for them...

It was only the change to list-colors, comptest was setting ZLS_COLORS 
directly. Naughty comptest.

Bye
 Sven

Index: Test/comptest
===================================================================
RCS file: /cvsroot/zsh/zsh/Test/comptest,v
retrieving revision 1.5
diff -u -r1.5 comptest
--- Test/comptest	2000/06/05 23:06:52	1.5
+++ Test/comptest	2000/06/19 12:14:38
@@ -26,19 +26,19 @@
   comptesteval \
 "module_path=( $module_path )" \
 "fpath=( $fpath )" \
-"ZLS_COLORS='no=<NO>:fi=<FI>:di=<DI>:ln=<LN>:pi=<PI>:so=<SO>:bd=<BD>:cd=<CD>:ex=<EX>:mi=<MI>:tc=<TC>:sp=<SP>:lc=<LC>:ec=<EC>\\n:rc=<RC>'" \
 'LISTMAX=10000000
 stty columns 80 rows 24
 bindkey -e
 autoload -U compinit
 compinit $dump
+zstyle ":completion:*:default" list-colors "no=<NO>" "fi=<FI>" "di=<DI>" "ln=<LN>" "pi=<PI>" "so=<SO>" "bd=<BD>" "cd=<CD>" "ex=<EX>" "mi=<MI>" "tc=<TC>" "sp=<SP>" "lc=<LC>" "ec=<EC>\n" "rc=<RC>"
 zstyle ":completion:*" group-name ""
-zstyle ":completion*:messages" format "<MESSAGE>%d</MESSAGE>
+zstyle ":completion:*:messages" format "<MESSAGE>%d</MESSAGE>
 "
-zstyle ":completion*:descriptions" format "<DESCRIPTION>%d</DESCRIPTION>
+zstyle ":completion:*:descriptions" format "<DESCRIPTION>%d</DESCRIPTION>
 "
-zstyle ":completion*:options" verbose yes
-zstyle ":completion*:values" verbose yes
+zstyle ":completion:*:options" verbose yes
+zstyle ":completion:*:values" verbose yes
 setopt noalwayslastprompt listrowsfirst completeinword
 zmodload zsh/complist
 expand-or-complete-with-report () {

--
Sven Wischnowsky                         wischnow@xxxxxxxxxxxxxxxxxxxxxxx



Messages sorted by: Reverse Date, Date, Thread, Author