attempt to fix tracker test
This commit is contained in:
parent
769e407f6a
commit
0ee4e46b49
|
@ -46,6 +46,7 @@ POSSIBILITY OF SUCH DAMAGE.
|
|||
#endif
|
||||
|
||||
#include <boost/system/error_code.hpp>
|
||||
#include <boost/asio/error.hpp>
|
||||
|
||||
#include "libtorrent/aux_/disable_warnings_pop.hpp"
|
||||
|
||||
|
|
|
@ -465,13 +465,14 @@ TORRENT_TEST(try_next)
|
|||
if (tr[0].fails == 1)
|
||||
{
|
||||
TEST_EQUAL(tr[0].verified, false);
|
||||
TEST_EQUAL(tr[0].last_error, boost::asio::error::netdb_errors::host_not_found);
|
||||
TEST_EQUAL(tr[0].last_error
|
||||
, error_code(boost::asio::error::host_not_found));
|
||||
}
|
||||
|
||||
TEST_EQUAL(tr[1].fails, 1);
|
||||
TEST_EQUAL(tr[1].verified, false);
|
||||
TEST_CHECK(tr[1].last_error == boost::asio::error::timed_out
|
||||
|| tr[1].last_error == boost::asio::error::connection_refused);
|
||||
|| tr[1].last_error == boost::system::error_condition(boost::system::errc::connection_refused));
|
||||
|
||||
TEST_EQUAL(tr[2].fails, 0);
|
||||
TEST_EQUAL(tr[2].verified, true);
|
||||
|
|
Loading…
Reference in New Issue