Zsh Mailing List Archive
Messages sorted by: Reverse Date, Date, Thread, Author

Re: Testsuite failures in A05execution inside Jenkins, but not locally (was: zsh 5.0.8.-test-3)



Hi,

On Thu, Aug 27, 2015 at 03:47:29PM +0200, Axel Beckert wrote:
> Maybe this line needs a "2>/dev/null", too?
> 
> >    { printf "%d\n" {1..20000} } | ( read -e )
> 
> Will try that.

This one helped. The essence of the patch now looks like this:

-  { printf "%d\n" {1..20000} } | ( read -e )
-  hang(){ printf "%d\n" {2..20000} | cat }; hang | ( read -e )
+  { printf "%d\n" {1..20000} } 2>/dev/null | ( read -e )
+  hang(){ printf "%d\n" {2..20000} | cat }; hang 2>/dev/null | ( read -e )

Thanks!

		Kind regards, Axel
-- 
/~\  Plain Text Ribbon Campaign                   | Axel Beckert
\ /  Say No to HTML in E-Mail and News            | abe@xxxxxxxxxxxxxxx  (Mail)
 X   See http://www.nonhtmlmail.org/campaign.html | abe@xxxxxxxxx (Mail+Jabber)
/ \  I love long mails: http://email.is-not-s.ms/ | http://abe.noone.org/ (Web)



Messages sorted by: Reverse Date, Date, Thread, Author