forked from premiere/premiere-libtorrent
extend timeouts
This commit is contained in:
parent
58e73c1469
commit
0b4339064f
|
@ -68,7 +68,7 @@ TORRENT_TEST(plain)
|
||||||
// terminate
|
// terminate
|
||||||
, [](int ticks, lt::session& ses) -> bool
|
, [](int ticks, lt::session& ses) -> bool
|
||||||
{
|
{
|
||||||
if (ticks > 75)
|
if (ticks > 80)
|
||||||
{
|
{
|
||||||
TEST_ERROR("timeout");
|
TEST_ERROR("timeout");
|
||||||
return true;
|
return true;
|
||||||
|
@ -135,7 +135,7 @@ TORRENT_TEST(suggest)
|
||||||
// terminate
|
// terminate
|
||||||
, [](int ticks, lt::session& ses) -> bool
|
, [](int ticks, lt::session& ses) -> bool
|
||||||
{
|
{
|
||||||
if (ticks > 75)
|
if (ticks > 80)
|
||||||
{
|
{
|
||||||
TEST_ERROR("timeout");
|
TEST_ERROR("timeout");
|
||||||
return true;
|
return true;
|
||||||
|
@ -163,7 +163,7 @@ TORRENT_TEST(utp_only)
|
||||||
// terminate
|
// terminate
|
||||||
, [](int ticks, lt::session& ses) -> bool
|
, [](int ticks, lt::session& ses) -> bool
|
||||||
{
|
{
|
||||||
if (ticks > 75)
|
if (ticks > 80)
|
||||||
{
|
{
|
||||||
TEST_ERROR("timeout");
|
TEST_ERROR("timeout");
|
||||||
return true;
|
return true;
|
||||||
|
@ -322,7 +322,7 @@ TORRENT_TEST(explicit_cache)
|
||||||
// terminate
|
// terminate
|
||||||
, [](int ticks, lt::session& ses) -> bool
|
, [](int ticks, lt::session& ses) -> bool
|
||||||
{
|
{
|
||||||
if (ticks > 75)
|
if (ticks > 80)
|
||||||
{
|
{
|
||||||
TEST_ERROR("timeout");
|
TEST_ERROR("timeout");
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Reference in New Issue