Problem: one more test fails on GNU/Hurd

Solution: mark test_rebind_ipc as XFAIL on Hurd as it does not
implement getsockname on IPC and thus it's impossible to use
wildcard IPC binds.
Document that ZMQ_LAST_ENDPOINT does not work on Hurd with IPC.
This commit is contained in:
Luca Boccassi 2019-01-26 16:38:13 +00:00
parent fe4e333334
commit 9fae3d1f10
2 changed files with 4 additions and 0 deletions

View File

@ -1044,10 +1044,13 @@ if !ON_LINUX
XFAIL_TESTS += tests/test_abstract_ipc XFAIL_TESTS += tests/test_abstract_ipc
endif endif
# GNU/Hurd does not support getsockname on IPC, so ZMQ_LAST_ENDPOINT cannot be
# used with IPC, so the following tests will fail
if ON_GNU if ON_GNU
XFAIL_TESTS += tests/test_ipc_wildcard \ XFAIL_TESTS += tests/test_ipc_wildcard \
tests/test_reqrep_ipc \ tests/test_reqrep_ipc \
tests/test_pair_ipc \ tests/test_pair_ipc \
tests/test_rebind_ipc \
tests/test_term_endpoint tests/test_term_endpoint
endif endif

View File

@ -370,6 +370,7 @@ The 'ZMQ_LAST_ENDPOINT' option shall retrieve the last endpoint bound for
TCP and IPC transports. The returned value will be a string in the form of TCP and IPC transports. The returned value will be a string in the form of
a ZMQ DSN. Note that if the TCP host is INADDR_ANY, indicated by a *, then a ZMQ DSN. Note that if the TCP host is INADDR_ANY, indicated by a *, then
the returned address will be 0.0.0.0 (for IPv4). the returned address will be 0.0.0.0 (for IPv4).
Note: not supported on GNU/Hurd with IPC due to non-working getsockname().
[horizontal] [horizontal]
Option value type:: NULL-terminated character string Option value type:: NULL-terminated character string