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 qAfLNN7syl7HGgAA0tVLHw (envelope-from ) for ; Sun, 24 May 2020 21:53:34 +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 6OpvMN7syl5/RQAAbx9fmQ (envelope-from ) for ; Sun, 24 May 2020 21:53:34 +0000 Received: from arlo.cworth.org (arlo.cworth.org [50.126.95.6]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits)) (No client certificate requested) by aspmx1.migadu.com (Postfix) with ESMTPS id 2C1DF940C54 for ; Sun, 24 May 2020 21:53:33 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by arlo.cworth.org (Postfix) with ESMTP id 961C26DE0F76; Sun, 24 May 2020 14:53:30 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at cworth.org Received: from arlo.cworth.org ([127.0.0.1]) by localhost (arlo.cworth.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id MGygaBdAQiUu; Sun, 24 May 2020 14:53:30 -0700 (PDT) Received: from arlo.cworth.org (localhost [IPv6:::1]) by arlo.cworth.org (Postfix) with ESMTP id 6CD406DE0B72; Sun, 24 May 2020 14:53:29 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by arlo.cworth.org (Postfix) with ESMTP id 3F6EE6DE0B72 for ; Sun, 24 May 2020 14:53:28 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at cworth.org Received: from arlo.cworth.org ([127.0.0.1]) by localhost (arlo.cworth.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id bjEm7ggn5Gom for ; Sun, 24 May 2020 14:53:27 -0700 (PDT) Received: from fethera.tethera.net (fethera.tethera.net [198.245.60.197]) by arlo.cworth.org (Postfix) with ESMTPS id 161896DE0B6D for ; Sun, 24 May 2020 14:53:27 -0700 (PDT) Received: from remotemail by fethera.tethera.net with local (Exim 4.92) (envelope-from ) id 1jcyYf-0006Nu-5W; Sun, 24 May 2020 17:53:25 -0400 Received: (nullmailer pid 2500618 invoked by uid 1000); Sun, 24 May 2020 21:53:23 -0000 From: David Bremner To: Jonas Bernoulli , notmuch@notmuchmail.org Subject: Re: [PATCH v3 2/3] emacs: Add simple make target to compile emacs lisp tests In-Reply-To: <20200425201809.16503-2-jonas@bernoul.li> References: <20200415182822.10841-1-jonas@bernoul.li> <20200425201809.16503-1-jonas@bernoul.li> <20200425201809.16503-2-jonas@bernoul.li> Date: Sun, 24 May 2020 18:53:23 -0300 Message-ID: <87v9kl3sq4.fsf@tethera.net> MIME-Version: 1.0 X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "Use and development of the notmuch mail system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: notmuch-bounces@notmuchmail.org Sender: "notmuch" X-Scanner: scn0 Authentication-Results: aspmx1.migadu.com; dkim=none; dmarc=none; spf=pass (aspmx1.migadu.com: domain of notmuch-bounces@notmuchmail.org designates 50.126.95.6 as permitted sender) smtp.mailfrom=notmuch-bounces@notmuchmail.org X-Spam-Score: 0.49 X-TUID: oqHV29VNUvlz Jonas Bernoulli writes: > > +compile-elisp-tests: > + $(EMACS) --batch -L emacs -L test -l notmuch.el -l test-lib.el -f \ > + batch-byte-compile test/*.el > + Can you explain a bit (perhaps in an updated commit message) why we need this target? thanks! David