aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--test/src/editfns-tests.el5
1 files 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 @@
362 (let (stat name) 362 (let (stat name)
363 (dolist (gid (list 0 1212345 (group-gid))) 363 (dolist (gid (list 0 1212345 (group-gid)))
364 (erase-buffer) 364 (erase-buffer)
365 (setq stat (call-process "getent" nil '(t nil) nil "group" 365 (setq stat (ignore-errors
366 (number-to-string gid))) 366 (call-process "getent" nil '(t nil) nil "group"
367 (number-to-string gid))))
367 (setq name (group-name gid)) 368 (setq name (group-name gid))
368 (goto-char (point-min)) 369 (goto-char (point-min))
369 (cond ((eq stat 0) 370 (cond ((eq stat 0)