Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

libc: increase time limits in unix socket test #350

Merged
merged 1 commit into from
May 24, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading