From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 9953 invoked by alias); 28 Feb 2017 07:50:37 -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: 40666 Received: (qmail 20194 invoked from network); 28 Feb 2017 07:50:36 -0000 X-Qmail-Scanner-Diagnostics: from out4-smtp.messagingengine.com by f.primenet.com.au (envelope-from , uid 7791) with qmail-scanner-2.11 (clamdscan: 0.99.2/21882. spamassassin: 3.4.1. Clear:RC:0(66.111.4.28):SA:0(-0.7/5.0):. Processed in 1.331575 secs); 28 Feb 2017 07:50:36 -0000 X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-0.7 required=5.0 tests=RCVD_IN_DNSWL_LOW, RCVD_IN_MSPIKE_H3,RCVD_IN_MSPIKE_WL,T_DKIM_INVALID autolearn=unavailable autolearn_force=no version=3.4.1 X-Envelope-From: d.s@daniel.shahaf.name X-Qmail-Scanner-Mime-Attachments: | X-Qmail-Scanner-Zip-Files: | Received-SPF: none (ns1.primenet.com.au: domain at daniel.shahaf.name does not designate permitted sender hosts) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= daniel.shahaf.name; h=content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-sender :x-me-sender:x-sasl-enc:x-sasl-enc; s=mesmtp; bh=/Hn5SHgQVlWJIpl +rPNF/Vx9EnY=; b=UamRZVfIBpi+qpx6r1qUvARR7rFp/tzzO6EscLkSMwVriOp IGbUcXFE1UJ8lOpicX985ydYJwPmjkyAIAucVblHL8nHTWOFY8Edl8TU96ftUVA2 c/R6o0ujXBTq/vmPUNqJYXpQZO4y7LLIv1/wkCQaRWq9HjOHGLWPSug5wtVY= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-sender :x-me-sender:x-sasl-enc:x-sasl-enc; s=smtpout; bh=/Hn5SHgQVlWJIp l+rPNF/Vx9EnY=; b=F3N1EO9EHOFcrx0BbNHD/IEbFktPNkCDvXz4lo5ajVOl9D aRRsC/5UL8+NEuHyX1rwaq8833pzqDGM/O+9i9Y9QzHAVX/XejfNVeIGYXpdyk4v Znwe567an2Av6Fw4Q4AQyhiLZlvC0VVw+93Wr4ZWEFrfJoOWh1guJXt7GR3nE= X-ME-Sender: X-Sasl-enc: DVqPNjSJmqhs1tVGHMMcqlhz1lzSwaASoO1//P0SnhRd 1488268229 Date: Tue, 28 Feb 2017 07:45:49 +0000 From: Daniel Shahaf To: zsh-workers@zsh.org Subject: Re: workers/40626 (commit 6c476c22) causes multiple test failures Message-ID: <20170228074549.GA8753@fujitsu.shahaf.local2> References: <170225160455.ZM15040@torch.brasslantern.com> <20170226061620.GA3729@fujitsu.shahaf.local2> <170226114216.ZM4201@torch.brasslantern.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <170226114216.ZM4201@torch.brasslantern.com> User-Agent: Mutt/1.5.23 (2014-03-12) Bart Schaefer wrote on Sun, Feb 26, 2017 at 11:42:16 -0800: > On Feb 26, 6:16am, Daniel Shahaf wrote: > } Subject: Re: workers/40626 (commit 6c476c22) causes multiple test failures > } > } Bart Schaefer wrote on Sat, Feb 25, 2017 at 16:04:55 -0800: > } > This is just the first one that dies: > } > } I could swear 'make check' had passed before I pushed this, but I can > } reproduce this. No time to debug, so reverted. Sorry for the breakage. > > workers/40508 always seemed questionable to me. > > I suspect this is what comes of some attempt to optimize assignments. > There may be cases where the recopy operation in these set*() functions > is redundant, but I don't feel like tracking that down just now; it is > definitely necessary for $options, so ... Thanks for fixing this. For future reference, James (who reported the original bug offlist) has since reported another symptom: % autoload -Uz compinit; compinit; setopt listambiguous; options+=() % % a zsh: Segmentation fault Src/zsh -f The latest patch fixes this one, too.