[tor-commits] [tor/master] Fix hs_config unit test on systems without unix sockets

nickm at torproject.org nickm at torproject.org
Mon Jul 24 19:13:48 UTC 2017


commit 661e31769795949acec36cbc24f0a1eb1db8b653
Author: Nick Mathewson <nickm at torproject.org>
Date:   Mon Jul 24 15:13:23 2017 -0400

    Fix hs_config unit test on systems without unix sockets
    
    Bugfix on 418059dd96f5f427eceffff1daeb2a2f6c4adbeb; jenkins found
    this.
---
 src/test/test_hs_config.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/test/test_hs_config.c b/src/test/test_hs_config.c
index 343ce9f2f..16f51f808 100644
--- a/src/test/test_hs_config.c
+++ b/src/test/test_hs_config.c
@@ -266,7 +266,9 @@ test_valid_service_v2(void *arg)
       "HiddenServiceVersion 2\n"
       "HiddenServicePort 80\n"
       "HiddenServicePort 22 localhost:22\n"
+#ifndef HAVE_SYS_UN_H
       "HiddenServicePort 42 unix:/path/to/socket\n"
+#endif
       "HiddenServiceAuthorizeClient basic alice,bob,eve\n"
       "HiddenServiceAllowUnknownPorts 1\n"
       "HiddenServiceMaxStreams 42\n"



More information about the tor-commits mailing list