From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jeff King Subject: Re: no-xmailer tests fail under Mac OS Date: Sat, 6 Dec 2014 02:12:34 -0500 Message-ID: <20141206071234.GA6850@peff.net> References: <20141206053434.GF31301@peff.net> <20141206063245.GA5966@peff.net> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Cc: Git List , Luis Henriques To: Michael Blume X-From: git-owner@vger.kernel.org Sat Dec 06 08:13:03 2014 Return-path: Envelope-to: gcvg-git-2@plane.gmane.org Received: from vger.kernel.org ([209.132.180.67]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1Xx9Y6-0000Yn-1p for gcvg-git-2@plane.gmane.org; Sat, 06 Dec 2014 08:13:02 +0100 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751350AbaLFHMg (ORCPT ); Sat, 6 Dec 2014 02:12:36 -0500 Received: from cloud.peff.net ([50.56.180.127]:49335 "HELO cloud.peff.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S1750977AbaLFHMg (ORCPT ); Sat, 6 Dec 2014 02:12:36 -0500 Received: (qmail 10749 invoked by uid 102); 6 Dec 2014 07:12:36 -0000 Received: from Unknown (HELO peff.net) (10.0.1.1) by cloud.peff.net (qpsmtpd/0.84) with SMTP; Sat, 06 Dec 2014 01:12:36 -0600 Received: (qmail 10194 invoked by uid 107); 6 Dec 2014 07:12:38 -0000 Received: from sigill.intra.peff.net (HELO sigill.intra.peff.net) (10.0.0.7) by peff.net (qpsmtpd/0.84) with SMTP; Sat, 06 Dec 2014 02:12:38 -0500 Received: by sigill.intra.peff.net (sSMTP sendmail emulation); Sat, 06 Dec 2014 02:12:34 -0500 Content-Disposition: inline In-Reply-To: Sender: git-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org Archived-At: On Fri, Dec 05, 2014 at 11:07:37PM -0800, Michael Blume wrote: > > Ah, right, we might be looking for 0 sometimes. The right way to do it > > without destroying the &&-chaining is: > > > > { grep ^X-Mailer: out || true } && > > test_line_count = $expected mailer > > Hmm, it doesn't look like that helper is &&-chained though? So it > seems like we could just do without the && You're right, but that is IMHO a bug. We would not notice if send-email or format-patch barfed, and we are expecting to find no X-Mailer (we wouldn't, but for the wrong reason). It should also be using test_config in the last two tests. -Peff