From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-1.0 required=5.0 tests=MAILING_LIST_MULTI, RCVD_IN_DNSWL_NONE autolearn=ham autolearn_force=no version=3.4.4 Received: (qmail 27987 invoked from network); 7 Jul 2020 16:03:53 -0000 Received: from ns1.primenet.com.au (HELO primenet.com.au) (203.24.36.2) by inbox.vuxu.org with ESMTPUTF8; 7 Jul 2020 16:03:53 -0000 Received: (qmail 4306 invoked by alias); 7 Jul 2020 16:03:45 -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: List-Unsubscribe: Sender: zsh-workers@zsh.org X-Seq: 46204 Received: (qmail 28003 invoked by uid 1010); 7 Jul 2020 16:03:45 -0000 X-Qmail-Scanner-Diagnostics: from out2-smtp.messagingengine.com by f.primenet.com.au (envelope-from , uid 7791) with qmail-scanner-2.11 (clamdscan: 0.102.3/25863. spamassassin: 3.4.4. Clear:RC:0(66.111.4.26):SA:0(-2.6/5.0):. Processed in 3.978395 secs); 07 Jul 2020 16:03:45 -0000 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) X-ME-Sender: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgeduiedrudehgdeltdcutefuodetggdotefrodftvf curfhrohhfihhlvgemucfhrghsthforghilhdpqfgfvfdpuffrtefokffrpgfnqfghnecu uegrihhlohhuthemuceftddtnecusecvtfgvtghiphhivghnthhsucdlqddutddtmdenuc fjughrpeffhffvuffkjghfofggtgfgsehtjedttdertddvnecuhfhrohhmpeffrghnihgv lhcuufhhrghhrghfuceougdrshesuggrnhhivghlrdhshhgrhhgrfhdrnhgrmhgvqeenuc ggtffrrghtthgvrhhnpeefudetgeevhedvhfetveetvdduleduieejueduueejjedtteeu tdejhfdtgfeiteenucfkphepjeelrddujeeirdefledrieelnecuvehluhhsthgvrhfuih iivgeptdenucfrrghrrghmpehmrghilhhfrhhomhepugdrshesuggrnhhivghlrdhshhgr hhgrfhdrnhgrmhgv X-ME-Proxy: Date: Tue, 7 Jul 2020 16:03:00 +0000 From: Daniel Shahaf To: Vin Shelton Cc: Bart Schaefer , "Zsh Hackers' List" Subject: Re: Five New Test Failures Message-ID: <20200707160300.1f33cd0b@tarpaulin.shahaf.local2> In-Reply-To: References: X-Mailer: Claws Mail 3.17.3 (GTK+ 2.24.32; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Vin Shelton wrote on Tue, 07 Jul 2020 10:14 -0400: > Thanks, Bart. That fixes four of the five failures. All except this one: > > ../../../src/zsh-2020-07-07/Test/E01options.ztst: starting. > This test hangs the shell when it fails... > Pattern match failed, line 1: > - /opt/build/zsh-2020-07-07/Test/options.tmp \[yn\]\? > files in / \[yn\]\? > +>nuc2% zsh: sure you want to delete all 15 files in > /opt/build/zsh-2020-07-07/Test/options.tmp [yn]? > >nuc2% zsh: sure you want to delete all 28 files in / [yn]? Well, it's my patch, but I can't reproduce the failure. I'm guessing it's the prompt at the start that causes it, but I'm not sure why it'd be printed in Vin's setup but not in mine. In the meantime, a theoretical fix for the case of /* expanding to more than 100 names: diff --git a/Test/E01options.ztst b/Test/E01options.ztst index c59509f2e..7b8e3940e 100644 --- a/Test/E01options.ztst +++ b/Test/E01options.ztst @@ -1449,4 +1449,4 @@ F:If this test fails at the first unsetopt, refer to P01privileged.ztst. BEL=$'\a' 0q:RM_STAR_SILENT *>zsh: sure you want to delete all 15 files in ${PWD:h}/options.tmp \[yn\]\? ${BEL} -*>zsh: sure you want to delete all <-> files in / \[yn\]\? ${BEL} +*>zsh: sure you want to delete (more than <->|all <->) files in / \[yn\]\? ${BEL}