From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mp1 ([2001:41d0:2:4a6f::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by ms11 with LMTPS id JLu8Ay1V8l/eDwAA0tVLHw (envelope-from ) for ; Sun, 03 Jan 2021 23:37:17 +0000 Received: from aspmx1.migadu.com ([2001:41d0:2:4a6f::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by mp1 with LMTPS id 2G7TOixV8l8GbQAAbx9fmQ (envelope-from ) for ; Sun, 03 Jan 2021 23:37:16 +0000 Received: from mail.notmuchmail.org (nmbug.tethera.net [IPv6:2607:5300:201:3100::1657]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (2048 bits)) (No client certificate requested) by aspmx1.migadu.com (Postfix) with ESMTPS id BC4AC940222 for ; Sun, 3 Jan 2021 23:37:16 +0000 (UTC) Received: from nmbug.tethera.net (localhost [127.0.0.1]) by mail.notmuchmail.org (Postfix) with ESMTP id D957129DA9; Sun, 3 Jan 2021 18:36:33 -0500 (EST) Received: from fethera.tethera.net (fethera.tethera.net [IPv6:2607:5300:60:c5::1]) by mail.notmuchmail.org (Postfix) with ESMTP id 6966B29D5B for ; Sun, 3 Jan 2021 18:36:09 -0500 (EST) Received: by fethera.tethera.net (Postfix, from userid 1001) id 4005E5FF47; Sun, 3 Jan 2021 18:36:09 -0500 (EST) Received: (nullmailer pid 126192 invoked by uid 1000); Sun, 03 Jan 2021 23:35:56 -0000 From: David Bremner To: notmuch@notmuchmail.org Cc: David Bremner Subject: [PATCH 01/36] test/T750-gzip: don't compress the xapian database Date: Sun, 3 Jan 2021 19:35:12 -0400 Message-Id: <20210103233547.122707-2-david@tethera.net> X-Mailer: git-send-email 2.29.2 In-Reply-To: <20210103233547.122707-1-david@tethera.net> References: <20210103233547.122707-1-david@tethera.net> MIME-Version: 1.0 Message-ID-Hash: BI54PXSMPJ3J6WKUMB3KBIOGK6TSUURL X-Message-ID-Hash: BI54PXSMPJ3J6WKUMB3KBIOGK6TSUURL X-MailFrom: bremner@tethera.net X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; emergency; loop; banned-address; member-moderation; header-match-notmuch.notmuchmail.org-0; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; suspicious-header X-Mailman-Version: 3.2.1 Precedence: list List-Id: "Use and development of the notmuch mail system." List-Help: List-Post: List-Subscribe: List-Unsubscribe: Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Migadu-Flow: FLOW_IN X-Migadu-Spam-Score: -0.88 Authentication-Results: aspmx1.migadu.com; dkim=none; dmarc=none; spf=pass (aspmx1.migadu.com: domain of notmuch-bounces@notmuchmail.org designates 2607:5300:201:3100::1657 as permitted sender) smtp.mailfrom=notmuch-bounces@notmuchmail.org X-Migadu-Queue-Id: BC4AC940222 X-Spam-Score: -0.88 X-Migadu-Scanner: scn0.migadu.com X-TUID: mEAkUdzgcqkO This causes mysterious failures in trying to detect if a database exists. --- test/T750-gzip.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/T750-gzip.sh b/test/T750-gzip.sh index fac41d39..807086fd 100755 --- a/test/T750-gzip.sh +++ b/test/T750-gzip.sh @@ -171,7 +171,7 @@ test_expect_equal_file EXPECTED OUTPUT add_email_corpus lkml test_begin_subtest "new doesn't run out of file descriptors with many gzipped files" ulimit -n 200 -gzip --recursive ${MAIL_DIR} +find ${MAIL_DIR} -name .notmuch -prune -false -o -type f -exec gzip --recursive {} \; test_expect_success "notmuch new" test_done -- 2.29.2