deflake - bump TestCloseSocketWithoutUntag 50ms test timeout to 5s

Bug: 282170301
Test: TreeHugger
Signed-off-by: Maciej Żenczykowski <maze@google.com>
Change-Id: Ic432da1ffe3951955401a0f547522dd0ab96b67c
This commit is contained in:
Maciej Żenczykowski
2023-05-15 18:48:18 +00:00
parent 7428de995b
commit 3bf75ef193

View File

@@ -93,7 +93,7 @@ TEST_F(BpfBasicTest, TestCloseSocketWithoutUntag) {
ASSERT_EQ(TEST_TAG, tagResult.value().tag);
ASSERT_EQ(0, close(sock));
// Check map periodically until sk destroy handler have done its job.
for (int i = 0; i < 10; i++) {
for (int i = 0; i < 1000; i++) {
usleep(5000); // 5ms
tagResult = cookieTagMap.readValue(cookie);
if (!tagResult.ok()) {
@@ -101,7 +101,7 @@ TEST_F(BpfBasicTest, TestCloseSocketWithoutUntag) {
return;
}
}
FAIL() << "socket tag still exist after 50ms";
FAIL() << "socket tag still exist after 5s";
}
}