Updated timeout to align with ci test

Signed-off-by: Alejandro Saucedo <axsauze@gmail.com>
This commit is contained in:
Alejandro Saucedo 2021-09-12 07:48:50 +01:00
parent 89fce2057e
commit e314e2ac4f

View file

@ -245,8 +245,8 @@ TEST(TestAsyncOperations, TestManagerAsyncExecutionTimeout)
std::chrono::duration_cast<std::chrono::microseconds>(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<kp::OpTensorSyncLocal>({ tensorA, tensorB });
sq1->evalAwait();