Skip to content

Commit

Permalink
libc: increase time limits in unix socket test
Browse files Browse the repository at this point in the history
JIRA: CI-452
  • Loading branch information
adamdebek committed May 24, 2024
1 parent 58f82df commit d592f9e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions libc/socket/unix-socket.c
Original file line number Diff line number Diff line change
Expand Up @@ -859,8 +859,8 @@ void unix_poll(int type)
TEST_ASSERT(rv == 0);
TEST_ASSERT(fds[0].revents == 0);
TEST_ASSERT(fds[1].revents == 0);
TEST_ASSERT(ms < 310);
TEST_ASSERT(ms > 290);
TEST_ASSERT_LESS_THAN(350, ms);
TEST_ASSERT_GREATER_THAN(290, ms);

clock_gettime(CLOCK_REALTIME, &ts[0]);
fds[0].events = POLLIN | POLLOUT;
Expand All @@ -873,7 +873,7 @@ void unix_poll(int type)
TEST_ASSERT(rv == 2);
TEST_ASSERT(fds[0].revents == POLLOUT);
TEST_ASSERT(fds[1].revents == POLLOUT);
TEST_ASSERT(ms <= 1);
TEST_ASSERT_LESS_THAN(5, ms);

send(fd[0], data, sizeof(data), 0);
send(fd[1], data, sizeof(data), 0);
Expand All @@ -889,7 +889,7 @@ void unix_poll(int type)
TEST_ASSERT(rv == 2);
TEST_ASSERT(fds[0].revents == POLLIN);
TEST_ASSERT(fds[1].revents == POLLIN);
TEST_ASSERT(ms <= 1);
TEST_ASSERT_LESS_THAN(5, ms);

close(fd[0]);
close(fd[1]);
Expand Down

0 comments on commit d592f9e

Please sign in to comment.