From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 24745 invoked by alias); 8 Dec 2011 15:46:03 -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: 29957 Received: (qmail 16518 invoked from network); 8 Dec 2011 15:45:50 -0000 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham version=3.3.2 Received-SPF: pass (ns1.primenet.com.au: SPF record at raveland.org designates 195.200.166.230 as permitted sender) Date: Thu, 8 Dec 2011 16:45:41 +0100 From: ports@raveland.org To: zsh-workers@zsh.org Cc: Zsh announcement list Subject: Re: Zsh 4.3.14 released Message-ID: <20111208154540.GA11543@coredump.raveland.priv> References: <17834.1323262578@csr.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="3MwIy2ne0vdjdPXF" Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <17834.1323262578@csr.com> X-Operating-System: OpenBSD 5.0 amd64 User-Agent: Mutt/1.5.21 (2010-09-15) --3MwIy2ne0vdjdPXF Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: inline Content-Transfer-Encoding: 8bit On Wed, Dec 07, 2011 at 12:56:18PM +0000, Peter Stephenson wrote: > I've uploaded zsh version 4.3.14 to ftp.zsh.org in the pub directory. > > This fixes a few minor glitches in last week's 4.3.13; the tests should > pass in more places. Hi, I still need this small diff on OpenBSD to avoid this error: ./A04redirect.ztst: starting. Pattern match failed: <\(eval\):1: failed to close file descriptor 3:* > Test ./A04redirect.ztst failed: error output differs from expected as shown above for: (exec 3<&- read foo <&-) Was testing: '<&-' redirection ./A04redirect.ztst: test failed. Once applied, everything works fine. Regards, -- Pierre-Emmanuel André GPG key: 0x7AE329DC --3MwIy2ne0vdjdPXF Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: attachment; filename=patch-Test_A04redirect_ztst $OpenBSD$ --- Test/A04redirect.ztst.orig Thu Dec 8 16:22:29 2011 +++ Test/A04redirect.ztst Thu Dec 8 16:23:42 2011 @@ -152,10 +152,11 @@ >hello >goodbye - (exec 3<&- + ({ exec 3<&- } 2>/dev/null + exec 3<&- read foo <&-) 1:'<&-' redirection -*?\(eval\):1: failed to close file descriptor 3:* +*?\(eval\):*: failed to close file descriptor 3:* print foo >&- 0:'>&-' redirection --3MwIy2ne0vdjdPXF--