From: Michael Wallner Date: Tue, 7 Jan 2020 21:16:29 +0000 (+0100) Subject: tests: speedup by not waiting too long for servers X-Git-Tag: pre_cmake~73 X-Git-Url: https://git.m6w6.name/?p=awesomized%2Flibmemcached;a=commitdiff_plain;h=f6879bcc9ff979bf313c7dd155ab2e1fee8605d8 tests: speedup by not waiting too long for servers --- diff --git a/libtest/wait.h b/libtest/wait.h index a39a853e..e5cdcb3d 100644 --- a/libtest/wait.h +++ b/libtest/wait.h @@ -74,7 +74,7 @@ public: } this_wait= retry * retry / 3 + 1; - libtest::dream(this_wait, 0); + libtest::dream(0, this_wait * 10000000); } } @@ -98,7 +98,7 @@ public: } this_wait= retry * retry / 3 + 1; - libtest::dream(this_wait, 0); + libtest::dream(0, this_wait * 10000000); } }