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 1FBF1431FAF for ; Sun, 15 Jan 2012 05:51:30 -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 g24-KK7mzAaK for ; Sun, 15 Jan 2012 05:51:29 -0800 (PST) Received: from mail-bk0-f53.google.com (mail-bk0-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 5C7AD431FAE for ; Sun, 15 Jan 2012 05:51:29 -0800 (PST) Received: by bkat2 with SMTP id t2so3965080bka.26 for ; Sun, 15 Jan 2012 05:51:26 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=from:to:cc:subject:in-reply-to:references:user-agent:date :message-id:mime-version:content-type; bh=48FsKfRheU59cyPLH7WXN4mfPP5k6uXD1agAgBegMrs=; b=gpB0jTRsqFKOBMjANqpNv8Er7cbCYEoZZTp9KBc7wV4c/V5txIfUbKLfzGBOiN4l9d dQjCZzB4hAeMQZwQXaC1FyhCHxfiJZVfze/axXMjOsMS3+aW99oNeMxjTLjEMk1bZcBe bDx0bHyBNR+7Q2N1kveH2VCmqnoKIn4i8rUyM= Received: by 10.205.127.65 with SMTP id gz1mr3451032bkc.12.1326635486673; Sun, 15 Jan 2012 05:51:26 -0800 (PST) Received: from localhost ([91.144.186.21]) by mx.google.com with ESMTPS id ek9sm1591532bkb.10.2012.01.15.05.51.24 (version=TLSv1/SSLv3 cipher=OTHER); Sun, 15 Jan 2012 05:51:25 -0800 (PST) From: Dmitry Kurochkin To: Pieter Praet Subject: Re: [PATCH] test: don't bail out of `run_emacs' too early when missing prereqs In-Reply-To: <1326532177-19167-1-git-send-email-pieter@praet.org> References: <87mx9qps82.fsf@praet.org> <1326532177-19167-1-git-send-email-pieter@praet.org> User-Agent: Notmuch/0.10.2+135~gb811a3c (http://notmuchmail.org) Emacs/23.3.1 (x86_64-pc-linux-gnu) Date: Sun, 15 Jan 2012 17:50:32 +0400 Message-ID: <8762gdnkgn.fsf@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii 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: Sun, 15 Jan 2012 13:51:30 -0000 On Sat, 14 Jan 2012 10:09:37 +0100, Pieter Praet wrote: > 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 only after checking all the 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 added missing prereq for dtach(1). looks good to me Regards, Dmitry > --- > test/test-lib.sh | 7 +++++-- > 1 files changed, 5 insertions(+), 2 deletions(-) > > diff --git a/test/test-lib.sh b/test/test-lib.sh > index 82767c0..d1fbc05 100644 > --- a/test/test-lib.sh > +++ b/test/test-lib.sh > @@ -907,8 +907,11 @@ EOF > > test_emacs () { > # test dependencies beforehand to avoid the waiting loop below > - test_require_external_prereq emacs || return > - test_require_external_prereq emacsclient || return > + missing_dependencies= > + test_require_external_prereq dtach || missing_dependencies=1 > + test_require_external_prereq emacs || missing_dependencies=1 > + test_require_external_prereq emacsclient || missing_dependencies=1 > + test -z "$missing_dependencies" || return > > if [ -z "$EMACS_SERVER" ]; then > server_name="notmuch-test-suite-$$" > -- > 1.7.8.1 >