]> git.eshelyaron.com Git - emacs.git/commitdiff
Disable mml-sec-tests on MacOS
authorLars Ingebrigtsen <larsi@gnus.org>
Wed, 28 Oct 2020 10:54:53 +0000 (11:54 +0100)
committerLars Ingebrigtsen <larsi@gnus.org>
Wed, 28 Oct 2020 10:54:53 +0000 (11:54 +0100)
* test/lisp/gnus/mml-sec-tests.el (test-conf): Disable tests on
MacOS (bug#44259).

test/lisp/gnus/mml-sec-tests.el

index d85516179fa181d9ca858d8671d39a0526a243c0..a6002b4d51e4debe6d28d5ad27482afcd0d2f4ca 100644 (file)
@@ -38,7 +38,10 @@ Mostly, the empty passphrase is used.  However, the keys for
  as S/MIME).")
 
 (defun test-conf ()
-  (ignore-errors (epg-find-configuration 'OpenPGP)))
+  ;; Emacs doesn't have support for finding the name of the PGP agent
+  ;; on MacOS, so disable the checks.
+  (and (not (eq system-type 'darwin))
+       (ignore-errors (epg-find-configuration 'OpenPGP))))
 
 (defun enc-standards ()
   (if with-smime '(enc-pgp enc-pgp-mime enc-smime)