]> git.eshelyaron.com Git - emacs.git/commitdiff
Unbreak process tests if 'errno' is not installed.
authorPhilipp Stephani <phst@google.com>
Thu, 31 Dec 2020 12:17:11 +0000 (13:17 +0100)
committerPhilipp Stephani <phst@google.com>
Thu, 31 Dec 2020 12:17:11 +0000 (13:17 +0100)
* test/src/process-tests.el (process-tests--EMFILE-message): Don't
signal an error if the 'errno' binary is unavailable.

test/src/process-tests.el

index eee8636067c57555e08046df4ff2baa9525b5ef7..7a83df9eefad667ae5b352f33f21b3ed2418fea4 100644 (file)
@@ -701,7 +701,9 @@ Return nil if that can't be determined."
   (when (eq process-tests--EMFILE-message :unknown)
     (setq process-tests--EMFILE-message
           (with-temp-buffer
-            (when (eql (call-process "errno" nil t nil "EMFILE") 0)
+            (when (eql (ignore-error 'file-error
+                         (call-process "errno" nil t nil "EMFILE"))
+                       0)
               (goto-char (point-min))
               (when (looking-at (rx "EMFILE" (+ blank) (+ digit)
                                     (+ blank) (group (+ nonl))))