remove the cases from non-sim test that are covered by the new http_connection sim test

This commit is contained in:
arvidn 2015-11-23 23:39:26 -05:00
parent 47cd496617
commit eed17f0bc1
2 changed files with 2 additions and 11 deletions

View File

@ -480,4 +480,6 @@ TORRENT_TEST(http_connection_socks_error)
// TODO: test http proxy
// TODO: test socks5 with password
// TODO: test SSL
// TODO: test keepalive

View File

@ -219,26 +219,15 @@ void run_suite(std::string const& protocol
stop_web_server();
}
TORRENT_TEST(no_proxy) { run_suite("http", settings_pack::none); }
TORRENT_TEST(socks4) { run_suite("http", settings_pack::socks4); }
TORRENT_TEST(socks5) { run_suite("http", settings_pack::socks5); }
TORRENT_TEST(socks5_pw) { run_suite("http", settings_pack::socks5_pw); }
TORRENT_TEST(http) { run_suite("http", settings_pack::http); }
TORRENT_TEST(http_pw) { run_suite("http", settings_pack::http_pw); }
#ifdef TORRENT_USE_OPENSSL
TORRENT_TEST(no_proxy_ssl) { run_suite("https", settings_pack::none); }
TORRENT_TEST(socks4_ssl) { run_suite("https", settings_pack::socks4); }
TORRENT_TEST(socks5_ssl) { run_suite("https", settings_pack::socks5); }
TORRENT_TEST(socks5_pw_ssl) { run_suite("https", settings_pack::socks5_pw); }
TORRENT_TEST(http_ssl) { run_suite("https", settings_pack::http); }
TORRENT_TEST(http_pw_ssl) { run_suite("https", settings_pack::http_pw); }
#endif // USE_OPENSSL
TORRENT_TEST(chunked_encoding)
{
run_suite("http", settings_pack::none, flag_chunked_encoding | flag_keepalive);
}
TORRENT_TEST(no_keepalive)
{
run_suite("http", settings_pack::none, 0);