From a004d3bbbae6abb033ed7d244252d04911f5c6fd Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Sat, 10 Nov 2018 19:15:59 -0800 Subject: [PATCH] ; * test/src/editfns-tests.el (test-group-name): Ignore getent errors. --- test/src/editfns-tests.el | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test/src/editfns-tests.el b/test/src/editfns-tests.el index 09584d1694a..66375a64333 100644 --- a/test/src/editfns-tests.el +++ b/test/src/editfns-tests.el @@ -362,8 +362,9 @@ (let (stat name) (dolist (gid (list 0 1212345 (group-gid))) (erase-buffer) - (setq stat (call-process "getent" nil '(t nil) nil "group" - (number-to-string gid))) + (setq stat (ignore-errors + (call-process "getent" nil '(t nil) nil "group" + (number-to-string gid)))) (setq name (group-name gid)) (goto-char (point-min)) (cond ((eq stat 0) -- 2.39.5