From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 10740 invoked by alias); 26 Oct 2011 02:03:26 -0000 Mailing-List: contact zsh-workers-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Workers List List-Post: List-Help: X-Seq: 29860 Received: (qmail 19345 invoked from network); 26 Oct 2011 02:03:24 -0000 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.6 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,RCVD_IN_DNSWL_LOW autolearn=ham version=3.3.1 Received-SPF: pass (ns1.primenet.com.au: SPF record at _spf.google.com designates 209.85.216.178 as permitted sender) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:sender:date:x-google-sender-auth:message-id:subject :from:to:content-type:content-transfer-encoding; bh=T9CM4CU+HgPM/tuDmI6M7mtHELY4r+NwKszKggrLueA=; b=PYQcZmp3sEbONw1ZzNDFwmmhGtj7SoU08gRk+z8MDsYhFMiN/3P2lpQGUhPlkxhSNm NrD0l9LCjB1xJ8lGtsbblLkWEpCU0iMiR/e7po91pyu6nMUf0EDx6DXnSbYtZ1x8Y3V1 8FJ4CEGwDAzLQFUKS0ehqmiT53Aksqt+fTYdo= MIME-Version: 1.0 Sender: ethersoft@gmail.com Date: Tue, 25 Oct 2011 21:58:00 -0400 X-Google-Sender-Auth: bBoeDrnDcPPw1PTA3VQQixS76lk Message-ID: Subject: pcre test failures From: Vin Shelton To: zsh-workers@zsh.org Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Phil et al, I'm getting the following failure on the new pcre test: --- zsh-2011-10-19/check.out +++ zsh-2011-10-25/check.out @@ -98,0 +99,12 @@ +/opt/src/zsh-2011-10-25/Test/V07pcre.ztst: starting. +(eval):1: failed to load module `zsh/pcre': /opt/build/zsh-2011-10-25/Test/Modules/zsh/pcre.so: cannot open shared object file: No such file or directory +Testing PCRE multibyte with locale en_US.UTF-8 +Test /opt/src/zsh-2011-10-25/Test/V07pcre.ztst failed: bad status 2, expected 0 from: + [[ 'foo=E2=86=92bar' =3D~ .([^[:ascii:]]). ]] + print $MATCH + print $match[1] +Error output: +(eval):1: failed to load module `zsh/pcre': /opt/build/zsh-2011-10-25/Test/Modules/zsh/pcre.so: cannot open shared object file: No such file or directory +(eval):1: -pcre-match not available for regex +Was testing: Basic non-ASCII regexp matching +/opt/src/zsh-2011-10-25/Test/V07pcre.ztst: test failed. @@ -108 +120 @@ -40 successful test scripts, 0 failures, 0 skipped +40 successful test scripts, 1 failure, 0 skipped @@ -109,0 +122 @@ +make[1]: *** [check] Error 1 @@ -110,0 +124 @@ +make: *** [check] Error 2 Well, OK, I guess. I suppose I have to enable-pcre to make this work.... Once I '--enable-pcre' and turn "load=3Dno" to "load=3Dyes" in config.modules, I still get this failure: ./V07pcre.ztst: starting. Testing PCRE multibyte with locale en_US.UTF-8 Test ./V07pcre.ztst failed: bad status 2, expected 0 from: [[ 'foo=E2=86=92bar' =3D~ .([^[:ascii:]]). ]] print $MATCH print $match[1] Error output: (eval):1: module `zsh/pcre' has no such feature: `C:pcre-match' (eval):1: -pcre-match not available for regex Was testing: Basic non-ASCII regexp matching Hope this helps, Vin