From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Rast Subject: [PATCH 2/6] git svn info: tests: do not use set -e Date: Tue, 26 Aug 2008 21:32:33 +0200 Message-ID: <1219779157-31602-3-git-send-email-trast@student.ethz.ch> References: <1219779157-31602-1-git-send-email-trast@student.ethz.ch> <1219779157-31602-2-git-send-email-trast@student.ethz.ch> Cc: Eric Wong , Junio C Hamano To: git@vger.kernel.org X-From: git-owner@vger.kernel.org Tue Aug 26 21:33:57 2008 Return-path: Envelope-to: gcvg-git-2@gmane.org Received: from vger.kernel.org ([209.132.176.167]) by lo.gmane.org with esmtp (Exim 4.50) id 1KY4IU-0004X8-2D for gcvg-git-2@gmane.org; Tue, 26 Aug 2008 21:33:46 +0200 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1759606AbYHZTcn (ORCPT ); Tue, 26 Aug 2008 15:32:43 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1759600AbYHZTcm (ORCPT ); Tue, 26 Aug 2008 15:32:42 -0400 Received: from xsmtp0.ethz.ch ([82.130.70.14]:37853 "EHLO XSMTP0.ethz.ch" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1759559AbYHZTck (ORCPT ); Tue, 26 Aug 2008 15:32:40 -0400 Received: from xfe0.d.ethz.ch ([82.130.124.40]) by XSMTP0.ethz.ch with Microsoft SMTPSVC(6.0.3790.3959); Tue, 26 Aug 2008 21:32:36 +0200 Received: from localhost.localdomain ([77.56.223.244]) by xfe0.d.ethz.ch over TLS secured channel with Microsoft SMTPSVC(6.0.3790.3959); Tue, 26 Aug 2008 21:32:36 +0200 X-Mailer: git-send-email 1.6.0.1.169.g494a In-Reply-To: <1219779157-31602-2-git-send-email-trast@student.ethz.ch> X-OriginalArrivalTime: 26 Aug 2008 19:32:36.0661 (UTC) FILETIME=[7E9DBE50:01C907B2] Sender: git-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org Archived-At: Exiting in the middle of a test confuses the test suite, which will just say "FATAL: Unexpected exit with code 1" in response to a failed test, instead of actually diagnosing failure and continuing with the next test. Signed-off-by: Thomas Rast --- t/t9119-git-svn-info.sh | 2 -- 1 files changed, 0 insertions(+), 2 deletions(-) diff --git a/t/t9119-git-svn-info.sh b/t/t9119-git-svn-info.sh index 46676bc..a70f2b9 100755 --- a/t/t9119-git-svn-info.sh +++ b/t/t9119-git-svn-info.sh @@ -6,8 +6,6 @@ test_description='git-svn info' . ./lib-git-svn.sh -set -e - # Tested with: svn, version 1.4.4 (r25188) v=`svn --version | sed -n -e 's/^svn, version \(1\.[0-9]*\.[0-9]*\).*$/\1/p'` case $v in -- 1.6.0.1.96.g9307e.dirty