From: Michael Albinus Date: Wed, 23 Oct 2024 15:01:08 +0000 (+0200) Subject: ; * test/lisp/proced-tests.el (proced--within-buffer): Instrument macro. X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=394a8c814475c37f8fe27a45e49857b657f36b8b;p=emacs.git ; * test/lisp/proced-tests.el (proced--within-buffer): Instrument macro. Do not merge with master (cherry picked from commit 75584a3a9614541478cf05edc6223de8db3d350c) --- diff --git a/test/lisp/proced-tests.el b/test/lisp/proced-tests.el index 6f16a241146..682c1328549 100644 --- a/test/lisp/proced-tests.el +++ b/test/lisp/proced-tests.el @@ -28,11 +28,13 @@ `(let ((proced-format ,format) (proced-filter ,filter) (proced-auto-update-flag nil) - (inhibit-message t)) + (inhibit-message (not (getenv "EMACS_EMBA_CI")))) (proced) (unwind-protect (with-current-buffer "*Proced*" ,@body) + (with-current-buffer "*Proced*" + (message "%s" (buffer-string))) (kill-buffer "*Proced*")))) (defun proced--assert-emacs-pid-in-buffer ()