From: Samuel Thibault Date: Sun, 10 Sep 2017 12:37:28 +0000 (+0200) Subject: sunrpc/tst-udp-timeout: Fix timeout value X-Git-Tag: glibc-2.27~931 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=00c3da43a;p=thirdparty%2Fglibc.git sunrpc/tst-udp-timeout: Fix timeout value 2.3 is not representable with double, and thus leads to rounding issues if the clock is not very precise and the measured delay is then exactly 2.3. * sunrpc/tst-udp-timeout.c (test_udp_server): Increase timeout to 2.5 seconds. --- diff --git a/ChangeLog b/ChangeLog index 45f122503f3..a31824b3729 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2017-09-10 Samuel Thibault + + * sunrpc/tst-udp-timeout.c (test_udp_server): Increase timeout to 2.5 + seconds. + 2017-09-09 Mike FABIAN [BZ #14925] diff --git a/sunrpc/tst-udp-timeout.c b/sunrpc/tst-udp-timeout.c index db9943a03e3..7ceba984320 100644 --- a/sunrpc/tst-udp-timeout.c +++ b/sunrpc/tst-udp-timeout.c @@ -352,13 +352,13 @@ test_udp_server (int port) .a = 170, .b = 40, .timeout_ms = 3000, .garbage_packets = with_garbage * 30 }, - (struct timeval) { 2, 300 * 1000 }); + (struct timeval) { 2, 500 * 1000 }); after = get_ticks (); if (test_verbose) - printf ("info: test_udp_server: 2.3 second timeout took %f seconds" + printf ("info: test_udp_server: 2.5 second timeout took %f seconds" " (garbage %d)\n", after - before, with_garbage); - TEST_VERIFY (2.3 <= after - before); + TEST_VERIFY (2.5 <= after - before); TEST_VERIFY (after - before < 3.0); test_call_flush (clnt); }