]> granicus.if.org Git - libevent/commitdiff
test/http: do not run tests that based on backlog filling (freebsd)
authorAzat Khuzhin <a3at.mail@gmail.com>
Wed, 10 Aug 2016 13:50:19 +0000 (16:50 +0300)
committerAzat Khuzhin <a3at.mail@gmail.com>
Wed, 10 Aug 2016 21:11:05 +0000 (00:11 +0300)
I cannot find any other solution for now, so simply ignore them for now, we
should think about normal fix for this.

Refs: #388

test/regress_http.c

index 741edf258fa17e53875f2bfcf813ce8f2236ff97..6d6abe29d3c3bbd31e60b21dbadbe0e31e95ccb4 100644 (file)
@@ -4519,12 +4519,14 @@ struct testcase_t http_testcases[] = {
        HTTP_N(cancel_by_host_inactive_server, cancel, BY_HOST | INACTIVE_SERVER),
        HTTP_N(cancel_inactive_server, cancel, INACTIVE_SERVER),
        HTTP_N(cancel_by_host_no_ns_inactive_server, cancel, BY_HOST | NO_NS | INACTIVE_SERVER),
+#ifndef __FreeBSD__
        HTTP_N(cancel_by_host_server_timeout, cancel, BY_HOST | INACTIVE_SERVER | SERVER_TIMEOUT),
        HTTP_N(cancel_server_timeout, cancel, INACTIVE_SERVER | SERVER_TIMEOUT),
        HTTP_N(cancel_by_host_no_ns_server_timeout, cancel, BY_HOST | NO_NS | INACTIVE_SERVER | SERVER_TIMEOUT),
+       HTTP_N(cancel_by_host_ns_timeout_server_timeout, cancel, BY_HOST | NO_NS | NS_TIMEOUT | INACTIVE_SERVER | SERVER_TIMEOUT),
+#endif
        HTTP_N(cancel_by_host_ns_timeout, cancel, BY_HOST | NO_NS | NS_TIMEOUT),
        HTTP_N(cancel_by_host_ns_timeout_inactive_server, cancel, BY_HOST | NO_NS | NS_TIMEOUT | INACTIVE_SERVER),
-       HTTP_N(cancel_by_host_ns_timeout_server_timeout, cancel, BY_HOST | NO_NS | NS_TIMEOUT | INACTIVE_SERVER | SERVER_TIMEOUT),
 
        HTTP(virtual_host),
        HTTP(post),