From: Pierce Lopez Date: Fri, 17 Sep 2021 05:56:56 +0000 (-0400) Subject: test: regress_http: skip unix socket parsing tests in windows X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4f73bf3a468b71e5f4f55442a99086feb863d1b0;p=libevent test: regress_http: skip unix socket parsing tests in windows windows doesn't do unix sockets --- diff --git a/test/regress_http.c b/test/regress_http.c index 0bd6dbc1..7ecec8b4 100644 --- a/test/regress_http.c +++ b/test/regress_http.c @@ -3037,9 +3037,11 @@ http_parse_uri_test(void *arg) BAD("http://www.example.com:hihi/"); BAD("://www.example.com/"); +#ifndef _WIN32 UNI("http://unix:/tmp/foobar/:/foo"); UNI("http://user:pass@unix:/tmp/foobar/:/foo"); UNI("http://unix:a:"); +#endif /* bad URIs: joining */ uri = evhttp_uri_new();