[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[shepherd] 03/04: tests: Update inetd tests to pass a list of endpoints.
From: |
Ludovic Courtès |
Subject: |
[shepherd] 03/04: tests: Update inetd tests to pass a list of endpoints. |
Date: |
Sat, 21 May 2022 12:19:50 -0400 (EDT) |
civodul pushed a commit to branch master
in repository shepherd.
commit c3322226afd7d3e39244911d58e7b7e831d178db
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Wed May 18 11:45:43 2022 +0200
tests: Update inetd tests to pass a list of endpoints.
* tests/inetd.sh: Pass 'make-inetd-constructor' a list of endpoints.
---
tests/inetd.sh | 13 ++++++++-----
1 file changed, 8 insertions(+), 5 deletions(-)
diff --git a/tests/inetd.sh b/tests/inetd.sh
index ef18800..83037bf 100644
--- a/tests/inetd.sh
+++ b/tests/inetd.sh
@@ -42,15 +42,18 @@ cat > "$conf" <<EOF
(make <service>
#:provides '(test-inetd)
#:start (make-inetd-constructor %command
- (make-socket-address AF_INET
- INADDR_LOOPBACK
- $PORT))
+ (list
+ (endpoint (make-socket-address
+ AF_INET
+ INADDR_LOOPBACK
+ $PORT))))
#:stop (make-inetd-destructor))
(make <service>
#:provides '(test-inetd-unix)
#:start (make-inetd-constructor %command
- (make-socket-address AF_UNIX
- "$service_socket")
+ (list
+ (endpoint (make-socket-address
+ AF_UNIX "$service_socket")))
#:max-connections 5)
#:stop (make-inetd-destructor)))