projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c30f24d
)
; * test/src/editfns-tests.el (test-group-name): Ignore getent errors.
author
Glenn Morris
<rgm@gnu.org>
Sun, 11 Nov 2018 03:15:59 +0000
(19:15 -0800)
committer
Glenn Morris
<rgm@gnu.org>
Sun, 11 Nov 2018 03:15:59 +0000
(19:15 -0800)
test/src/editfns-tests.el
patch
|
blob
|
history
diff --git
a/test/src/editfns-tests.el
b/test/src/editfns-tests.el
index 09584d1694a878cef66c55a5ba02dbb42ce953a0..66375a643339d7edd7a6b256293824c74a766863 100644
(file)
--- 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)