From bedcfc326156bf6211858eefa18b0de67bbefa72 Mon Sep 17 00:00:00 2001 From: "Hongli Lai (Phusion)" Date: Wed, 2 Oct 2024 17:35:16 +0200 Subject: [PATCH] timing sensitivity --- test/cxx/IOTools/IOUtilsTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/cxx/IOTools/IOUtilsTest.cpp b/test/cxx/IOTools/IOUtilsTest.cpp index c39cba31d2..02246c3eb0 100644 --- a/test/cxx/IOTools/IOUtilsTest.cpp +++ b/test/cxx/IOTools/IOUtilsTest.cpp @@ -610,7 +610,7 @@ namespace tut { // We read 3 bytes. ensure_equals(readExact(p.first, &buf, sizeof(buf), &timeout), 3u); ensure("Should have taken at least 20 msec", timeout <= 100000 - 20000); - ensure("Should have taken at most 95 msec", timeout >= 100000 - 150000); + ensure("Should have taken at most 150 msec", timeout >= 100000 - 150000); } TEST_METHOD(59) {