diff options
author | Ludovic Courtès <ludo@gnu.org> | 2019-05-15 12:14:58 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-05-15 12:18:51 +0200 |
commit | 33572a36624aa1c5cca409cfee36eb67982f4891 (patch) | |
tree | 257b649d91630b5dc14cc5ed62b01c54d37f8349 /gnu/services | |
parent | 8b310793d2b7d3cf5b3a5301423640dcf68e2528 (diff) | |
download | patches-33572a36624aa1c5cca409cfee36eb67982f4891.tar patches-33572a36624aa1c5cca409cfee36eb67982f4891.tar.gz |
tests: Skip unreliable "herd invalidate nscd" test.
* gnu/tests/base.scm (run-basic-test)["nscd invalidate action, wrong
table"]: Skip unconditionally.
Diffstat (limited to 'gnu/services')
-rw-r--r-- | gnu/services/base.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/services/base.scm b/gnu/services/base.scm index 015d873308..f709ca5519 100644 --- a/gnu/services/base.scm +++ b/gnu/services/base.scm @@ -1294,8 +1294,8 @@ the tty to run, among other things." (lambda args ;; There's a race with the SIGCHLD handler, which could ;; call 'waitpid' before 'close-pipe' above does. If we - ;; get ECHILD, that means we lost the race, but that's - ;; fine. + ;; get ECHILD, that means we lost the race; in that case, we + ;; cannot tell what the exit code was (FIXME). (or (= ECHILD (system-error-errno args)) (apply throw args))))) (line |