From e314e2ac4ff44af2f529a870167e4ac6e1e8804e Mon Sep 17 00:00:00 2001 From: Alejandro Saucedo Date: Sun, 12 Sep 2021 07:48:50 +0100 Subject: [PATCH] Updated timeout to align with ci test Signed-off-by: Alejandro Saucedo --- test/TestAsyncOperations.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/TestAsyncOperations.cpp b/test/TestAsyncOperations.cpp index 36179375b..1ece3ec12 100644 --- a/test/TestAsyncOperations.cpp +++ b/test/TestAsyncOperations.cpp @@ -245,8 +245,8 @@ TEST(TestAsyncOperations, TestManagerAsyncExecutionTimeout) std::chrono::duration_cast(endSync - startSync) .count(); - // The time should several orders of magnitude smaller (in this 10k instead of 1m ns) - EXPECT_LT(duration, 10000); + // The time should several orders of magnitude smaller (in this 100k instead of 1m ns) + EXPECT_LT(duration, 100000); sq1->evalAsync({ tensorA, tensorB }); sq1->evalAwait();