From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: master 5308a4e11e: Improve image-tests.el Commentary Date: Wed, 07 Sep 2022 14:24:43 +0300 Message-ID: <837d2fig04.fsf@gnu.org> Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="25158"; mail-complaints-to="usenet@ciao.gmane.io" Cc: emacs-devel@gnu.org To: Stefan Kangas Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Wed Sep 07 13:27:06 2022 Return-path: Envelope-to: ged-emacs-devel@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1oVtD0-0006Od-D1 for ged-emacs-devel@m.gmane-mx.org; Wed, 07 Sep 2022 13:27:06 +0200 Original-Received: from localhost ([::1]:47590 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1oVtCy-0003Fo-T7 for ged-emacs-devel@m.gmane-mx.org; Wed, 07 Sep 2022 07:27:04 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:41930) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oVtAz-00017F-Em for emacs-devel@gnu.org; Wed, 07 Sep 2022 07:25:01 -0400 Original-Received: from fencepost.gnu.org ([2001:470:142:3::e]:39866) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oVtAz-00083G-5H; Wed, 07 Sep 2022 07:25:01 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=Subject:To:From:Date:mime-version:in-reply-to: references; bh=i3rBbWRPEDgDO4z/k45tsIjMdifxxOWCcFMkSfYUi+E=; b=Iybqhs45cig6Wc 4E4He8W41SnUKkjCbRbRyh7t5M/TXZWZTumV286stCk5SH3u0SuxVZUTwTBqlBHpMXWN9OBMpFFkr RN3BmkyK3PU3v+IhVwa/jy8PytIPcjjHUZDnIe1aIHFzjynp71BHjuSSu484pqFUv+1sjHaOXHK6H 2E83wWhC/rnTFgmSqoARkKSHFWy4tdvGFFZUw1eMGFQBzRYLja/APjV0eqwB/fWJbKcS/AZasE0AN gw+3CbQfuuZmHItL2wZiHHzbyegERyXPrCW2YApIQlJac+p5HhR6dWrJwnQnt0Tb75OQBQHGhBmxN eln4gxK73DeMDCbljGUg==; Original-Received: from [87.69.77.57] (port=3521 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oVtAx-0002JM-OJ; Wed, 07 Sep 2022 07:25:00 -0400 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Original-Sender: "Emacs-devel" Xref: news.gmane.io gmane.emacs.devel:294826 Archived-At: > --- a/test/src/image-tests.el > +++ b/test/src/image-tests.el > @@ -22,8 +22,11 @@ > ;;; Commentary: > > ;; Most of these tests will only run in a GUI session, and not with > -;; "make check". Run them manually in an interactive session with > -;; `M-x eval-buffer' followed by `M-x ert'. > +;; "make check". You must run them manually in an interactive session > +;; with, for example, `M-x eval-buffer' followed by `M-x ert'. > +;; > +;; To run these tests from the command line, try: > +;; ./src/emacs -Q -l test/src/image-tests.el -eval "(ert t)" IMO, the above means that these tests should be moved out of test/src, and into test/manual/. That's where we put all the tests that must be run manually. Thanks.