diff --git a/test/regress_http.c b/test/regress_http.c index 48ecd8da..1f6947e1 100644 --- a/test/regress_http.c +++ b/test/regress_http.c @@ -2172,9 +2172,7 @@ struct testcase_t http_testcases[] = { HTTP_LEGACY(stream_in), HTTP_LEGACY(stream_in_cancel), -#ifndef WIN32 HTTP_LEGACY(connection_retry), -#endif END_OF_TESTCASES }; diff --git a/test/regress_main.c b/test/regress_main.c index a6dac356..562c16db 100644 --- a/test/regress_main.c +++ b/test/regress_main.c @@ -214,6 +214,10 @@ main(int argc, const char **argv) return 1; #endif +#ifdef WIN32 + tinytest_skip(testgroups, "http/connection_retry"); +#endif + if (tinytest_main(argc,argv,testgroups)) return 1;