mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-30 03:40:34 +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:
parent
cd2d5a2500
commit
6d6bc013e1
1 changed files with 1 additions and 1 deletions
|
@ -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"))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue