Compile http_connection_retry_test, but mark it skipped on win32.

svn:r1099
This commit is contained in:
Nick Mathewson 2009-02-02 22:17:32 +00:00
parent 722885fba9
commit ea11f8195f
2 changed files with 4 additions and 2 deletions

View File

@ -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
};

View File

@ -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;