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 9CE58429E25 for ; Wed, 28 Dec 2011 08:18:57 -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 7nPTf4i78icH for ; Wed, 28 Dec 2011 08:18:57 -0800 (PST) Received: from mail-we0-f181.google.com (mail-we0-f181.google.com [74.125.82.181]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by olra.theworths.org (Postfix) with ESMTPS id 03AA1431FB6 for ; Wed, 28 Dec 2011 08:18:56 -0800 (PST) Received: by werm12 with SMTP id m12so7317683wer.26 for ; Wed, 28 Dec 2011 08:18:54 -0800 (PST) Received: by 10.216.133.104 with SMTP id p82mr18153612wei.6.1325089134451; Wed, 28 Dec 2011 08:18:54 -0800 (PST) Received: from hotblack-desiato.hh.sledj.net (host81-149-164-25.in-addr.btopenworld.com. [81.149.164.25]) by mx.google.com with ESMTPS id z5sm75697894wix.5.2011.12.28.08.18.52 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 28 Dec 2011 08:18:53 -0800 (PST) Received: by hotblack-desiato.hh.sledj.net (Postfix, from userid 30000) id 3B630A091B; Wed, 28 Dec 2011 16:18:51 +0000 (GMT) From: David Edmondson To: notmuch@notmuchmail.org Subject: [PATCH 2/2] test-lib: Allow the user to override which emacs binary is used. Date: Wed, 28 Dec 2011 16:18:48 +0000 Message-Id: <1325089128-32010-2-git-send-email-dme@dme.org> X-Mailer: git-send-email 1.7.7.3 In-Reply-To: <1325089128-32010-1-git-send-email-dme@dme.org> References: <1325089128-32010-1-git-send-email-dme@dme.org> 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: Wed, 28 Dec 2011 16:18:57 -0000 Specify when running the tests: make EMACS=emacs23 test --- test/test-lib.sh | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/test/test-lib.sh b/test/test-lib.sh index 41a3144..53aa885 100644 --- a/test/test-lib.sh +++ b/test/test-lib.sh @@ -897,7 +897,7 @@ export NOTMUCH_CONFIG=$NOTMUCH_CONFIG # # --load Force loading of notmuch.el and test-lib.el -exec emacs --no-init-file --no-site-file \ +exec ${EMACS:-emacs} --no-init-file --no-site-file \ --no-window-system \ --directory "$TEST_DIRECTORY/../emacs" --load notmuch.el \ --directory "$TEST_DIRECTORY" --load test-lib.el \ -- 1.7.7.3