Return-Path: X-Original-To: notmuch@notmuchmail.org Delivered-To: notmuch@notmuchmail.org Received: from localhost (localhost [127.0.0.1]) by olra.theworths.org (Postfix) with ESMTP id EBA8C429E27 for ; Wed, 16 Nov 2011 17:56:50 -0800 (PST) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: -0.799 X-Spam-Level: X-Spam-Status: No, score=-0.799 tagged_above=-999 required=5 tests=[DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FREEMAIL_FROM=0.001, RCVD_IN_DNSWL_LOW=-0.7] autolearn=disabled Received: from olra.theworths.org ([127.0.0.1]) by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Buikgth6J3By for ; Wed, 16 Nov 2011 17:56:50 -0800 (PST) Received: from mail-bw0-f53.google.com (mail-bw0-f53.google.com [209.85.214.53]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by olra.theworths.org (Postfix) with ESMTPS id 26723431FD0 for ; Wed, 16 Nov 2011 17:56:50 -0800 (PST) Received: by bkaq10 with SMTP id q10so1456807bka.26 for ; Wed, 16 Nov 2011 17:56:48 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=from:to:subject:date:message-id:x-mailer; bh=C6kWibgs14UNU9x0qPXCICr8it9oOQ86DVeTbIFMFZk=; b=PTdARyX4dJQJ5AcJG3aJU930co1yCAZoM/6vt8Xni3xdwoLbZdf70pqvxkhjpdHpDk fyWa4ov2Im3GBNoSEulXn51d7BU8+yO12swOcZqoN4URQIOW24X8DCjqEo9W3tzG7TLm WgQDVHBbNAlrJVrFuk+54GTCduIZ8QM0Vz9Jg= Received: by 10.204.9.1 with SMTP id j1mr31726514bkj.57.1321495008525; Wed, 16 Nov 2011 17:56:48 -0800 (PST) Received: from localhost ([91.144.186.21]) by mx.google.com with ESMTPS id x14sm40098822bkf.10.2011.11.16.17.56.47 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 16 Nov 2011 17:56:47 -0800 (PST) From: Dmitry Kurochkin To: notmuch@notmuchmail.org Subject: [PATCH 0/9] test: (hopefully) better test prerequisites Date: Thu, 17 Nov 2011 05:56:17 +0400 Message-Id: <1321494986-18998-1-git-send-email-dmitry.kurochkin@gmail.com> X-Mailer: git-send-email 1.7.7.2 X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: "Use and development of the notmuch mail system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Nov 2011 01:56:51 -0000 Hi all. The following patch series is an attempt to introduce proper dependencies for external binaries in a less intrusive way than [1]. The primary aim was to avoid changing every subtest that uses external binaries. There are still failing tests if a dependency is missing (e.g. "Verify that sent messages are saved/searchable (via FCC)" fails if there is no emacs). It happens because such tests depend on others which are skipped. This issues are not addressed by this patch series. If others do like the approach and it is pushed, I will work on updating tests that use the old style prerequisites (atomicity). A careful review is needed! Regards, Dmitry [1] id:"1321454035-22023-1-git-send-email-schnouki@schnouki.net"