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 E69ED429E28 for ; Thu, 12 Jan 2012 09:18:48 -0800 (PST) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: -0.7 X-Spam-Level: X-Spam-Status: No, score=-0.7 tagged_above=-999 required=5 tests=[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 H5ISnD+pcvzj for ; Thu, 12 Jan 2012 09:18:48 -0800 (PST) Received: from mail-ww0-f45.google.com (mail-ww0-f45.google.com [74.125.82.45]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by olra.theworths.org (Postfix) with ESMTPS id 5B358431FB6 for ; Thu, 12 Jan 2012 09:18:48 -0800 (PST) Received: by wgbds11 with SMTP id ds11so1956633wgb.2 for ; Thu, 12 Jan 2012 09:18:47 -0800 (PST) Received: by 10.180.99.225 with SMTP id et1mr3182025wib.2.1326388727213; Thu, 12 Jan 2012 09:18:47 -0800 (PST) Received: from localhost ([109.131.126.209]) by mx.google.com with ESMTPS id u5sm6508457wbm.2.2012.01.12.09.18.46 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 12 Jan 2012 09:18:46 -0800 (PST) From: Pieter Praet To: Dmitry Kurochkin Subject: [PATCH] test: don't bail out of `run_emacs' too early when missing prereqs Date: Thu, 12 Jan 2012 18:16:59 +0100 Message-Id: <1326388619-17422-1-git-send-email-pieter@praet.org> X-Mailer: git-send-email 1.7.8.1 In-Reply-To: <87d3aolu61.fsf@praet.org> References: <87d3aolu61.fsf@praet.org> Cc: Notmuch Mail 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, 12 Jan 2012 17:18:49 -0000 When running the Emacs tests in verbose mode, only the first missing prereq is reported because the `run_emacs' function is short-circuited early: #+begin_example emacs: Testing emacs interface missing prerequisites: [0] emacs(1) skipping test: [0] Basic notmuch-hello view in emacs SKIP [0] Basic notmuch-hello view in emacs #+end_example This can lead to situations reminiscent of "dependency hell", so instead of returning based on each individual `test_require_external_prereq's exit status, we now do so by checking $test_subtest_missing_external_prereqs_: #+begin_example emacs: Testing emacs interface missing prerequisites: [0] dtach(1) emacs(1) emacsclient(1) skipping test: [0] Basic notmuch-hello view in emacs SKIP [0] Basic notmuch-hello view in emacs #+end_example Also add missing prereq for dtach(1). --- test/test-lib.sh | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/test/test-lib.sh b/test/test-lib.sh index 82767c0..6ec3882 100644 --- a/test/test-lib.sh +++ b/test/test-lib.sh @@ -907,8 +907,10 @@ EOF test_emacs () { # test dependencies beforehand to avoid the waiting loop below - test_require_external_prereq emacs || return - test_require_external_prereq emacsclient || return + test_require_external_prereq dtach + test_require_external_prereq emacs + test_require_external_prereq emacsclient + test -z "$test_subtest_missing_external_prereqs_" || return if [ -z "$EMACS_SERVER" ]; then server_name="notmuch-test-suite-$$" -- 1.7.8.1