From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 1760 invoked from network); 17 May 2000 12:28:58 -0000 Received: from sunsite.auc.dk (130.225.51.30) by ns1.primenet.com.au with SMTP; 17 May 2000 12:28:58 -0000 Received: (qmail 8851 invoked by alias); 17 May 2000 12:28:50 -0000 Mailing-List: contact zsh-workers-help@sunsite.auc.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 11441 Received: (qmail 8842 invoked from network); 17 May 2000 12:28:47 -0000 To: zsh-workers@sunsite.auc.dk Subject: Re: PATCH: Completion matching control test. (Try 2) References: <200005171033.MAA06689@beta.informatik.hu-berlin.de> MIME-Version: 1.0 (generated by SEMI 1.13.7 - "Awazu") Content-Type: text/plain; charset=US-ASCII From: Tanaka Akira Date: 17 May 2000 21:30:14 +0900 In-Reply-To: <200005171033.MAA06689@beta.informatik.hu-berlin.de> (Sven Wischnowsky's message of "Wed, 17 May 2000 12:33:56 +0200 (MET DST)") Message-ID: User-Agent: T-gnus/6.14.1 (based on Gnus v5.8.3) (revision 16) SEMI/1.13.7 (Awazu) FLIM/1.13.2 (Kasanui) Emacs/20.6 (i686-pc-linux-gnu) MULE/4.0 (HANANOEN) In article <200005171033.MAA06689@beta.informatik.hu-berlin.de>, Sven Wischnowsky writes: > I'm working on it and will commit it when I'm finished, which may take > some time because those tests are so damn slow. I wished there were a > way to make comptest initialise the completion system only once. This makes completion tests to start zsh only once for each test file. Index: Test/comptest =================================================================== RCS file: /cvsroot/zsh/zsh/Test/comptest,v retrieving revision 1.2 diff -u -r1.2 comptest --- Test/comptest 2000/05/17 11:59:33 1.2 +++ Test/comptest 2000/05/17 12:24:14 @@ -1,39 +1,34 @@ -#!/usr/local/bin/zsh -f - -[[ -d $ZTST_testdir/Modules/zsh ]] && module_path=( $ZTST_testdir/Modules ) - -zmodload -i zsh/zpty -setopt extendedglob +comptestinit () { + setopt extendedglob + [[ -d $ZTST_testdir/Modules/zsh ]] && module_path=( $ZTST_testdir/Modules ) + fpath=( $ZTST_srcdir/../(Completion|Functions)/*~*/CVS(/) ) + + zmodload -i zsh/zpty + + comptest_zsh=${ZSH:-zsh} + termcap_ce="$(echotc ce)" + + while getopts z: opt; do + case $opt in + z) comptest_zsh="$OPTARG";; + esac + done + (( OPTIND > 1 )) && shift $(( OPTIND - 1 )) -fpath=( $ZTST_srcdir/../(Completion|Functions)/*~*/CVS(/) ) + export PS1="" + zpty zsh "$comptest_zsh" -f -debug= -dump=(-D) -code= -zsh=${ZSH:-zsh} -termcap_ce="$(echotc ce)" - -debug=yes -while getopts Dd:c:z: opt; do - case $opt in - D) debug=yes;; - d) dump=(-d "$OPTARG");; - c) code="$OPTARG";; - z) zsh="$OPTARG";; - esac -done -(( OPTIND > 1 )) && shift $(( OPTIND - 1 )) - -input="$*" - -tmp=/tmp/comptest.$$ - -cat <$tmp -module_path=( $module_path ) -fpath=( $fpath ) + zpty -r zsh log1 "**" || { + print "first prompt doesn't appered." + return 1 + } + + comptesteval \ +"module_path=( $module_path )" \ +"fpath=( $fpath )" \ +"ZLS_COLORS='no=:fi=:di=:ln=:pi=:so=:bd=:cd=:ex=:mi=:tc=:sp=:lc=:ec=\\n:rc='" \ +'LISTMAX=10000000 stty columns 80 rows 24 -LISTMAX=10000000 -ZLS_COLORS='no=:fi=:di=:ln=:pi=:so=:bd=:cd=:ex=:mi=:tc=:sp=:lc=:ec=\n:rc=' bindkey -e autoload -U compinit compinit $dump @@ -49,7 +44,7 @@ expand-or-complete-with-report () { print -lr "" zle expand-or-complete - print -lr - "\$LBUFFER" "\$RBUFFER" + print -lr - "$LBUFFER" "$RBUFFER" zle clear-screen zle -R } @@ -61,8 +56,9 @@ } finish () { print "" - sleep 1 - exit 0 + zle kill-whole-line + zle clear-screen + zle -R } zle -N expand-or-complete-with-report zle -N list-choices-with-report @@ -70,54 +66,50 @@ bindkey "^I" expand-or-complete-with-report bindkey "^D" list-choices-with-report bindkey "^Z" finish -$code -End +' +} -export PS1="" -zpty zsh "$zsh" -f +comptesteval () { + local tmp=/tmp/comptest.$$ -zpty -r zsh log1 "**" || { - print first prompt doesn\'t appered. - exit 1 -} - -zpty -w zsh ". $tmp" -zpty -r zsh log2 "**" || { - print second prompt doesn\'t appered. - exit 1 -} -rm $tmp - -zpty -n -w zsh "$input"$'\C-Z' -zpty -r zsh log "**" || { - print finish widget doesn\'t invoked. - exit 1 -} - -if [[ -n "$debug" ]]; then - print -lr - "$log" > /tmp/comptest.debug -fi - -logs=(${(s::)log}) -shift logs - -for log in "$logs[@]"; do - if [[ "$log" = (#b)*$''(*)$'\r\n'(*)$''* ]]; then - print -lr "line: {$match[1]}{$match[2]}" - fi - while (( ${(N)log#*(#b)(<(??)>(*)|(*)|(*)|(*))} )); do - log="${log[$mend[1]+1,-1]}" - if (( 0 <= $mbegin[2] )); then - if [[ $match[2] != TC && $match[3] != \ # ]]; then - print -lr "$match[2]:{${match[3]%$termcap_ce}}" - fi - elif (( 0 <= $mbegin[4] )); then - print -lr "DESCRIPTION:{$match[4]}" - elif (( 0 <= $mbegin[5] )); then - print -lr "MESSAGE:{$match[5]}" - elif (( 0 <= $mbegin[6] )); then - result=`echo $match[6] | tr -d '\012\015'` - print -lr "COMPADD:{$result}" + print -lr - "$@" > $tmp + zpty -w zsh ". $tmp" + zpty -r zsh log_eval "**" || { + print "prompt doesn't appered." + return 1 + } + rm $tmp +} + +comptest () { + input="$*" + zpty -n -w zsh "$input"$'\C-Z' + zpty -r zsh log "***" || { + print "finish widget doesn't invoked." + return 1 + } + + logs=(${(s::)log}) + shift logs + + for log in "$logs[@]"; do + if [[ "$log" = (#b)*$''(*)$'\r\n'(*)$''* ]]; then + print -lr "line: {$match[1]}{$match[2]}" fi + while (( ${(N)log#*(#b)(<(??)>(*)|(*)|(*)|(*))} )); do + log="${log[$mend[1]+1,-1]}" + if (( 0 <= $mbegin[2] )); then + if [[ $match[2] != TC && $match[3] != \ # ]]; then + print -lr "$match[2]:{${match[3]%$termcap_ce}}" + fi + elif (( 0 <= $mbegin[4] )); then + print -lr "DESCRIPTION:{$match[4]}" + elif (( 0 <= $mbegin[5] )); then + print -lr "MESSAGE:{$match[5]}" + elif (( 0 <= $mbegin[6] )); then + result=`echo $match[6] | tr -d '\012\015'` + print -lr "COMPADD:{$result}" + fi + done done -done +} Index: Test/53completion.ztst =================================================================== RCS file: /cvsroot/zsh/zsh/Test/53completion.ztst,v retrieving revision 1.3 diff -u -r1.3 53completion.ztst --- Test/53completion.ztst 2000/05/17 10:28:15 1.3 +++ Test/53completion.ztst 2000/05/17 12:24:14 @@ -1,15 +1,13 @@ # Tests for completion system. %prep - zmodload -i zsh/zpty + . $ZTST_srcdir/comptest - TERM=vt100 - export ZTST_testdir ZTST_srcdir TERM - comptest () { $ZTST_testdir/../Src/zsh -f $ZTST_srcdir/comptest -z $ZTST_testdir/../Src/zsh -d $ZTST_testdir/compdump.tmp "$@" } - mkdir comp.tmp cd comp.tmp + comptestinit -z $ZTST_testdir/../Src/zsh + mkdir dir1 mkdir dir2 touch file1 @@ -32,7 +30,8 @@ >line: {: dir1/}{} >line: {: dir2/}{} - comptest -c '_users () { compadd user1 user2 }' $': ~\t\t\t\t\t' + comptesteval '_users () { compadd user1 user2 }' + comptest $': ~\t\t\t\t\t' 0:tilde >line: {: ~user}{} >line: {: ~user}{} @@ -41,100 +40,109 @@ >line: {: ~user1}{} >line: {: ~user2}{} >line: {: ~user1}{} + + comptest $'echo ;:\C-b\C-b\t' +0:tilde +>line: {echo }{;:} +>DESCRIPTION:{file} +>DI:{dir1} +>DI:{dir2} +>FI:{file1} +>FI:{file2} - code='compdef _tst tst; _tst () { _arguments ":desc1:(arg1)" }' - comptest -c "$code" $'tst \t' + comptesteval 'compdef _tst tst; _tst () { _arguments ":desc1:(arg1)" }' + comptest $'tst \t' 0:_arguments >line: {tst arg1 }{} - comptest -c "$code" $'tst a\t' + comptest $'tst a\t' 0:_arguments >line: {tst arg1 }{} - comptest -c "$code" $'tst ar\t' + comptest $'tst ar\t' 0:_arguments >line: {tst arg1 }{} - comptest -c "$code" $'tst arg\t' + comptest $'tst arg\t' 0:_arguments >line: {tst arg1 }{} - comptest -c "$code" $'tst arg1\t' + comptest $'tst arg1\t' 0:_arguments >line: {tst arg1 }{} - comptest -c "$code" $'tst r\t' + comptest $'tst r\t' 0:_arguments >line: {tst r}{} - comptest -c "$code" $'tst x\t' + comptest $'tst x\t' 0:_arguments >line: {tst x}{} - comptest -c "$code" $'tst a \t' + comptest $'tst a \t' 0:_arguments >line: {tst a }{} >MESSAGE:{no more arguments} - comptest -c "$code" $'tst a b \t' + comptest $'tst a b \t' 0:_arguments >line: {tst a b }{} >MESSAGE:{no more arguments} - code='compdef _tst tst; _tst () { _arguments ":desc1:(a b)" }' - comptest -c "$code" $'tst \t' + comptesteval 'compdef _tst tst; _tst () { _arguments ":desc1:(a b)" }' + comptest $'tst \t' 0:_arguments >line: {tst }{} >DESCRIPTION:{desc1} >NO:{a} >NO:{b} - code='compdef _tst tst; _tst () { _arguments ":desc1:(arg1)" ":desc2:(arg2)" ":desc3:(arg3)" }' - comptest -c "$code" $'tst \t' + comptesteval 'compdef _tst tst; _tst () { _arguments ":desc1:(arg1)" ":desc2:(arg2)" ":desc3:(arg3)" }' + comptest $'tst \t' 0:_arguments >line: {tst arg1 }{} - comptest -c "$code" $'tst arg1 \t' + comptest $'tst arg1 \t' 0:_arguments >line: {tst arg1 arg2 }{} - comptest -c "$code" $'tst arg1 arg2 \t' + comptest $'tst arg1 arg2 \t' 0:_arguments >line: {tst arg1 arg2 arg3 }{} - comptest -c "$code" $'tst \C-D' + comptest $'tst \C-D' 0:_arguments >DESCRIPTION:{desc1} >NO:{arg1} - code='compdef _tst tst; _tst () { _arguments "-\+[opt]" }' - comptest -c "$code" $'tst -\C-D' + comptesteval 'compdef _tst tst; _tst () { _arguments "-\+[opt]" }' + comptest $'tst -\C-D' 0:_arguments >DESCRIPTION:{option} >NO:{-+ -- opt} - code='compdef _tst tst; _tst () { _arguments "1:desc1:(arg1)" }' - comptest -c "$code" $'tst \t' + comptesteval 'compdef _tst tst; _tst () { _arguments "1:desc1:(arg1)" }' + comptest $'tst \t' 0:_arguments >line: {tst arg1 }{} - code='compdef _tst tst; _tst () { _arguments "-x" ":arg:" }' - comptest -c "$code" $'tst -\t' + comptesteval 'compdef _tst tst; _tst () { _arguments "-x" ":arg:" }' + comptest $'tst -\t' 0:_arguments >line: {tst -}{} >MESSAGE:{arg} - code='compdef _tst tst; _tst () { _arguments "-x:arg:" }' - comptest -c "$code" $'tst -x\t' + comptesteval 'compdef _tst tst; _tst () { _arguments "-x:arg:" }' + comptest $'tst -x\t' 0:_arguments >line: {tst -x }{} - code=' + comptesteval ' compdef _tst tst _tst () { _arguments "-a" "*::rest:_tst2" } _tst2 () { compadd - -b } ' - comptest -c "$code" $'tst arg -\t' + comptest $'tst arg -\t' 0:_arguments >line: {tst arg -b }{} Index: Test/54compmatch.ztst =================================================================== RCS file: /cvsroot/zsh/zsh/Test/54compmatch.ztst,v retrieving revision 1.1 diff -u -r1.1 54compmatch.ztst --- Test/54compmatch.ztst 2000/05/17 11:59:33 1.1 +++ Test/54compmatch.ztst 2000/05/17 12:24:14 @@ -11,15 +11,12 @@ # contains the compadd output. %prep - zmodload -i zsh/zpty + . $ZTST_srcdir/comptest - TERM=vt100 - export ZTST_testdir ZTST_srcdir TERM - comptest () { $ZTST_testdir/../Src/zsh -f $ZTST_srcdir/comptest -z $ZTST_testdir/../Src/zsh -d $ZTST_testdir/compdump.tmp "$@" } - mkdir match.tmp cd match.tmp + comptestinit -z $ZTST_testdir/../Src/zsh list1=(IndianRed IndianRed2 IndianRed3 IndianRed4) test_code () { @@ -28,87 +25,87 @@ code="compdef _tst tst ; _tst () { echo -n '';compadd -M '" code="$code$matcher" code="$code' - ${(P)list} ; echo -n ''}" + comptesteval "$code" } %test - test_code z: list1 - comptest -c "$code" $'tst \t' + comptest $'tst \t' 0:Match Error for "z:" >line: {tst }{} >COMPADD:{_tst:compadd: unknown match specification character `z'} test_code m: list1 - comptest -c "$code" $'tst \t' + comptest $'tst \t' 0:Match Error for "m:" >line: {tst }{} >COMPADD:{_tst:compadd: missing patterns} test_code M: list1 - comptest -c "$code" $'tst \t' + comptest $'tst \t' 0:Match Error for "M:" >line: {tst }{} >COMPADD:{_tst:compadd: missing patterns} test_code r: list1 - comptest -c "$code" $'tst \t' + comptest $'tst \t' 0:Match Error "r:" >line: {tst }{} >COMPADD:{_tst:compadd: missing patterns} test_code R: list1 - comptest -c "$code" $'tst \t' + comptest $'tst \t' 0:Match Error "R:" >line: {tst }{} >COMPADD:{_tst:compadd: missing patterns} test_code l: list1 - comptest -c "$code" $'tst \t' + comptest $'tst \t' 0:Match Error for "l:" >line: {tst }{} >COMPADD:{_tst:compadd: missing patterns} test_code L: list1 - comptest -c "$code" $'tst \t' + comptest $'tst \t' 0:Match Error for "L:" >line: {tst }{} >COMPADD:{_tst:compadd: missing patterns} test_code 'm:{0-9' list1 - comptest -c "$code" $'tst \t' + comptest $'tst \t' 0:Match Error for "m:{0-9" >line: {tst }{} >COMPADD:{_tst:compadd: unterminated character class} test_code 'm:{0-9}' list1 - comptest -c "$code" $'tst \t' + comptest $'tst \t' 0:Match Error for "m:{0-9}" >line: {tst }{} >COMPADD:{_tst:compadd: missing word pattern} test_code 'm:{0-9}={' list1 - comptest -c "$code" $'tst \t' + comptest $'tst \t' 0:Match Error for "m:{0-9}={" >line: {tst }{} >COMPADD:{_tst:compadd: unterminated character class} test_code 'm:{0-9}={0-' list1 - comptest -c "$code" $'tst \t' + comptest $'tst \t' 0:Match Error for "m:{0-9}={0-" >line: {tst }{} >COMPADD:{_tst:compadd: unterminated character class} test_code 'm:{0-9}={-' list1 - comptest -c "$code" $'tst \t' + comptest $'tst \t' 0:Match Error for "m:{0-9}={-" >line: {tst }{} >COMPADD:{_tst:compadd: unterminated character class} test_code r: list1 - comptest -c "$code" $'tst \t' + comptest $'tst \t' 0:Match Error "r:" >line: {tst }{} >COMPADD:{_tst:compadd: missing patterns} @@ -123,26 +120,26 @@ ) options_matcher='L:|[nN][oO]= M:_= M:{A-Z}={a-z}' test_code $options_matcher example1_list - comptest -c "$code" $'tst nolistbee\t' + comptest $'tst nolistbee\t' 0:Documentation example for options, input "nolistbee" >line: {tst nolistbeep }{} >COMPADD:{} test_code $options_matcher example1_list - comptest -c "$code" $'tst list_bee\t' + comptest $'tst list_bee\t' 0:Documentation example for options, input "list_bee" >line: {tst list_beep }{} >COMPADD:{} test_code $options_matcher example1_list - comptest -c "$code" $'tst ListBee\t' + comptest $'tst ListBee\t' 0:Documentation example for options, input "ListBee" >line: {tst ListBeep }{} >COMPADD:{} test_code $options_matcher example1_list - comptest -c "$code" $'tst NOList\tB\t' + comptest $'tst NOList\tB\t' 0:Documentation example for options, input "NOList" >line: {tst NOList}{} >COMPADD:{} @@ -156,7 +153,7 @@ test_code $options_matcher example1_list - comptest -c "$code" $'tst NO_List\t__\tB\t' + comptest $'tst NO_List\t__\tB\t' 0:Documentation example for options, input "NO_List\t__\tB\t" >line: {tst NO_List}{} >COMPADD:{} @@ -176,7 +173,7 @@ >COMPADD:{} test_code $options_matcher example1_list - comptest -c "$code" $'tst __\tN\t__o\t___\tlist_\tbeep__\t' + comptest $'tst __\tN\t__o\t___\tlist_\tbeep__\t' 0:Documentation example for options, input "__\tN\t__o\t___\tlist_\tbeep__\t" >line: {tst __}{} >COMPADD:{} @@ -204,7 +201,7 @@ >COMPADD:{} test_code $options_matcher example1_list - comptest -c "$code" $'tst __\tNo\t___\tlist_\tbeep__\t' + comptest $'tst __\tNo\t___\tlist_\tbeep__\t' 0:Documentation example for options, input "__\tNo\t___\tlist_\tbeep__\t" >line: {tst __}{} >COMPADD:{} @@ -231,7 +228,7 @@ test_code $options_matcher example1_list - comptest -c "$code" $'tst ___\tlist_\tbeep__\t' + comptest $'tst ___\tlist_\tbeep__\t' 0:Documentation example for options, input "___\tlist_\tbeep__\t" >line: {tst ___}{} >COMPADD:{} @@ -261,7 +258,7 @@ lower_insensitive_m="m:{a-z}={A-Z}" example2_list=(ABC Abc abc) test_code $lower_insensitive_M example2_list - comptest -c "$code" $'tst ab\tC\t' + comptest $'tst ab\tC\t' 0:Documentation example for lowercase insenitive M, input "ab\tC\t" >line: {tst ab}{} >COMPADD:{} @@ -271,7 +268,7 @@ >COMPADD:{} test_code $lower_insensitive_m example2_list - comptest -c "$code" $'tst A\t\t' + comptest $'tst A\t\t' 0:Documentation example for lowercase insenitive m, input "A\t\t" >line: {tst A}{} >COMPADD:{} @@ -284,7 +281,7 @@ case_insensitive_M="M:{a-zA-Z}={A-Za-z}" case_insensitive_m="m:{a-zA-Z}={A-Za-z}" test_code $case_insensitive_M example3_list - comptest -c "$code" $'tst aB\t\t' + comptest $'tst aB\t\t' 0:Documentation example for case insenitive M, input "aB\t\t" >line: {tst aB}{} >COMPADD:{} @@ -295,7 +292,7 @@ test_code $case_insensitive_m example3_list - comptest -c "$code" $'tst aB\t\t' + comptest $'tst aB\t\t' 0:Documentation example for case insenitive m, input "aB\t\t" >line: {tst a}{BC} >COMPADD:{} @@ -317,13 +314,13 @@ comp.graphics.rendering.misc comp.graphics.rendering.raytracing comp.graphics.rendering.renderman) test_code $example4_matcher example4_list - comptest -c "$code" $'tst c.s.u\t' + comptest $'tst c.s.u\t' 0:Documentation example using input c.s.u >line: {tst comp.sources.unix }{} >COMPADD:{} test_code $example4_matcher example4_list - comptest -c "$code" $'tst c.g.\ta\t.\tp\ta\tg\t' + comptest $'tst c.g.\ta\t.\tp\ta\tg\t' 0:Documentation example using input c.g.\ta\t.\tp\ta\tg\t >line: {tst comp.graphics.}{} >COMPADD:{} @@ -357,13 +354,13 @@ >COMPADD:{} test_code $example4_matcher example4_list - comptest -c "$code" $'tst c...pag\t' + comptest $'tst c...pag\t' 0:Documentation example using input c...pag\t >line: {tst comp.graphics.apps.pagemaker }{} >COMPADD:{} test_code $example4_matcher example4_list - comptest -c "$code" $'tst c...pa\tg\t' + comptest $'tst c...pa\tg\t' 0:Documentation example using input c...pa\tg\t >line: {tst comp.graphics.apps.pa}{} >COMPADD:{} @@ -373,7 +370,7 @@ example5_matcher='r:|[.,_-]=* r:|=*' example5_list=(veryverylongfile.c veryverylongheader.h) test_code $example5_matcher example5_list - comptest -c "$code" $'tst v.c\tv.h\t' + comptest $'tst v.c\tv.h\t' 0:Documentation example using input v.c\t >line: {tst veryverylongfile.c }{} >COMPADD:{} @@ -383,19 +380,19 @@ example6_list=(LikeTHIS FooHoo 5foo123 5bar234) test_code 'r:|[A-Z0-9]=* r:|=*' example6_list - comptest -c "$code" $'tst H\t' + comptest $'tst H\t' 0:Documentation example using "r:|[A-Z0-9]=* r:|=*", input H >line: {tst H}{} >COMPADD:{} test_code 'r:|[A-Z0-9]=* r:|=*' example6_list - comptest -c "$code" $'tst 2\t' + comptest $'tst 2\t' 0:Documentation example using "r:|[A-Z0-9]=* r:|=*", input 2 >line: {tst 2}{} >COMPADD:{} test_code 'r:|[A-Z0-9]=** r:|=*' example6_list - comptest -c "$code" $'tst H\t' + comptest $'tst H\t' 0:Documentation example using "r:|[A-Z0-9]=* r:|=*", input 2 >line: {tst H}{} >COMPADD:{} @@ -403,7 +400,7 @@ >NO:{LikeTHIS} test_code 'r:|[A-Z0-9]=** r:|=*' example6_list - comptest -c "$code" $'tst 2\t\t' + comptest $'tst 2\t\t' 0:Documentation example using "r:|[A-Z0-9]=* r:|=*", input 2 >line: {tst 523}{} >COMPADD:{} @@ -415,7 +412,7 @@ example7_matcher="r:[^A-Z0-9]||[A-Z0-9]=** r:|=*" example7_list=($example6_list) test_code $example7_matcher example7_list - comptest -c "$code" $'tst H\t2\t' + comptest $'tst H\t2\t' 0:Documentation example using "r:[^A-Z0-9]||[A-Z0-9]=** r:|=*" >line: {tst FooHoo }{} >COMPADD:{} @@ -426,13 +423,13 @@ workers_7311_matcher="m:{a-z}={A-Z} r:|[.,_-]=* r:|=*" workers_7311_list=(Abc-Def-Ghij.txt Abc-def.ghi.jkl_mno.pqr.txt Abc_def_ghi_jkl_mno_pqr.txt) test_code $workers_7311_matcher workers_7311_list - comptest -c "$code" $'tst a-a\t' + comptest $'tst a-a\t' 0:Bug from workers 7311 >line: {tst a-a}{} >COMPADD:{} test_code $workers_7311_matcher workers_7311_list - comptest -c "$code" $'tst a\t\t-d.\t' + comptest $'tst a\t\t-d.\t' 0:Bug from workers_7311 >line: {tst Abc}{} >COMPADD:{} @@ -447,7 +444,7 @@ workers_10886_matcher="r:|[A-Z0-9]=* r:|=*" workers_10886_list=(BW UWB W) test_code $workers_10886_matcher workers_10886_list - comptest -c "$code" $'tst W\t' + comptest $'tst W\t' 0:Bug from workers 10886 >line: {tst W }{} >COMPADD:{} @@ -455,7 +452,7 @@ workers_11081_matcher='m:{a-zA-Z}={A-Za-z} r:|[.,_-]=* r:[^A-Z0-9]||[A-Z0-9]=* r:[A-Z0-9]||[^A-Z0-9]=* r:[^0-9]||[0-9]=* r:|=*' workers_11081_list=(build.out build.out1 build.out2) test_code $workers_11081_matcher workers_11081_list - comptest -c "$code" $'tst bui\t\t\t' + comptest $'tst bui\t\t\t' 0:Bug from workers 11081 >line: {tst build.out}{} >COMPADD:{} @@ -471,7 +468,7 @@ workers_11388_matcher='r:|[:.]=* r:|=*' workers_11388_list=(a.b:0 c.d:1) test_code $workers_11388_matcher workers_11388_list - comptest -c "$code" $'tst :\t' + comptest $'tst :\t' 0:Non-bug from workers 11388 >line: {tst :}{} >COMPADD:{} @@ -479,7 +476,7 @@ workers_11388_matcher='r:|[:.]=** r:|=*' workers_11388_list=(a.b:0 c.d:1) test_code $workers_11388_matcher workers_11388_list - comptest -c "$code" $'tst :\t' + comptest $'tst :\t' 0:Non-bug from workers 11388 >line: {tst }{.:} >COMPADD:{} -- Tanaka Akira