split up the web seed tests further into chunked encoding and banning of web seeds as their own tests

This commit is contained in:
Arvid Norberg
2013-11-03 18:27:24 +00:00
parent b4aad2a481
commit e60d54d90e
10 changed files with 124 additions and 49 deletions

View File

@@ -43,16 +43,10 @@ int test_main()
int ret = 0;
for (int url_seed = 0; url_seed < 2; ++url_seed)
{
for (int chunked = 0; chunked < 2; ++chunked)
{
for (int ban = 0; ban < 2; ++ban)
{
#ifdef TORRENT_USE_OPENSSL
run_http_suite(proxy, "https", url_seed, chunked, ban);
run_http_suite(proxy, "https", url_seed);
#endif
run_http_suite(proxy, "http", url_seed, chunked, ban);
}
}
run_http_suite(proxy, "http", url_seed);
}
return ret;
}