[PATCH v2 3/3] test: fix die() in test-lib-common.sh
authorTomi Ollila <tomi.ollila@iki.fi>
Sat, 28 May 2016 12:39:30 +0000 (15:39 +0300)
committerW. Trevor King <wking@tremily.us>
Sat, 20 Aug 2016 23:21:54 +0000 (16:21 -0700)
02/6e7b627e416d438756f96913afc21efc6ca07f [new file with mode: 0644]

diff --git a/02/6e7b627e416d438756f96913afc21efc6ca07f b/02/6e7b627e416d438756f96913afc21efc6ca07f
new file mode 100644 (file)
index 0000000..54f519d
--- /dev/null
@@ -0,0 +1,73 @@
+Return-Path: <too@guru-group.fi>\r
+X-Original-To: notmuch@notmuchmail.org\r
+Delivered-To: notmuch@notmuchmail.org\r
+Received: from localhost (localhost [127.0.0.1])\r
+ by arlo.cworth.org (Postfix) with ESMTP id BDAC06DE02C3\r
+ for <notmuch@notmuchmail.org>; Sat, 28 May 2016 05:40:11 -0700 (PDT)\r
+X-Virus-Scanned: Debian amavisd-new at cworth.org\r
+X-Spam-Flag: NO\r
+X-Spam-Score: 0.252\r
+X-Spam-Level: \r
+X-Spam-Status: No, score=0.252 tagged_above=-999 required=5 tests=[AWL=0.261, \r
+ HEADER_FROM_DIFFERENT_DOMAINS=0.001, T_RP_MATCHES_RCVD=-0.01]\r
+ autolearn=disabled\r
+Received: from arlo.cworth.org ([127.0.0.1])\r
+ by localhost (arlo.cworth.org [127.0.0.1]) (amavisd-new, port 10024)\r
+ with ESMTP id 0ND5zwtGLSoB for <notmuch@notmuchmail.org>;\r
+ Sat, 28 May 2016 05:40:04 -0700 (PDT)\r
+Received: from guru.guru-group.fi (guru.guru-group.fi [46.183.73.34])\r
+ by arlo.cworth.org (Postfix) with ESMTP id 3F5806DE01F7\r
+ for <notmuch@notmuchmail.org>; Sat, 28 May 2016 05:39:56 -0700 (PDT)\r
+Received: by guru.guru-group.fi (Postfix, from userid 501)\r
+ id 1F10A1000B3; Sat, 28 May 2016 15:39:44 +0300 (EEST)\r
+From: Tomi Ollila <tomi.ollila@iki.fi>\r
+To: notmuch@notmuchmail.org\r
+Cc: tomi.ollila@iki.fi\r
+Subject: [PATCH v2 3/3] test: fix die() in test-lib-common.sh\r
+Date: Sat, 28 May 2016 15:39:30 +0300\r
+Message-Id: <1464439170-25978-3-git-send-email-tomi.ollila@iki.fi>\r
+X-Mailer: git-send-email 2.8.2\r
+In-Reply-To: <1464439170-25978-1-git-send-email-tomi.ollila@iki.fi>\r
+References: <1464439170-25978-1-git-send-email-tomi.ollila@iki.fi>\r
+X-BeenThere: notmuch@notmuchmail.org\r
+X-Mailman-Version: 2.1.20\r
+Precedence: list\r
+List-Id: "Use and development of the notmuch mail system."\r
+ <notmuch.notmuchmail.org>\r
+List-Unsubscribe: <https://notmuchmail.org/mailman/options/notmuch>,\r
+ <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
+List-Archive: <http://notmuchmail.org/pipermail/notmuch/>\r
+List-Post: <mailto:notmuch@notmuchmail.org>\r
+List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
+List-Subscribe: <https://notmuchmail.org/mailman/listinfo/notmuch>,\r
+ <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
+X-List-Received-Date: Sat, 28 May 2016 12:40:11 -0000\r
+\r
+In scripts that include test-lib-common.sh but not test-lib.sh\r
+the die() implementation needs to be a bit different due to\r
+fd redirection differences. test-lib-common.sh implements die()\r
+only if it was not implemented already.\r
+---\r
+ test/test-lib-common.sh | 6 ++++++\r
+ 1 file changed, 6 insertions(+)\r
+\r
+diff --git a/test/test-lib-common.sh b/test/test-lib-common.sh\r
+index ba4a8e112084..bc2322162fd5 100644\r
+--- a/test/test-lib-common.sh\r
++++ b/test/test-lib-common.sh\r
+@@ -18,6 +18,12 @@\r
+ # This file contains common code to be used by both the regular\r
+ # (correctness) tests and the performance tests.\r
\r
++# test-lib.sh defines die() which echoes to nonstandard fd where\r
++# output was redirected earlier in that file. If test-lib.sh is not\r
++# loaded, neither this redirection nor die() function were defined.\r
++#\r
++type die >/dev/null 2>&1 || die () { echo "$@" >&2; exit 1; }\r
++\r
+ find_notmuch_path ()\r
+ {\r
+     dir="$1"\r
+-- \r
+2.8.2\r
+\r