1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-29 19:30:36 +02:00

Fix regression in 00-repl-server.test

* test-suite/tests/00-repl-server.test (call-with-repl-server): use provided?
This commit is contained in:
Michael Gran 2018-04-25 20:58:54 -07:00
parent cd2d5a2500
commit 6d6bc013e1

View file

@ -28,7 +28,7 @@
"Set up a REPL server in a separate process and call PROC with a
socket connected to that server."
;; The REPL server requires thread. The test requires fork.
(unless (and (provided? 'threads) (provided? 'fork) (provided 'AF_UNIX))
(unless (and (provided? 'threads) (provided? 'fork) (provided? 'AF_UNIX))
(throw 'unsupported))
(let ((sockaddr (make-socket-address AF_UNIX "/tmp/repl-server"))