Skip to content

Commit

Permalink
tests: posix: headers: uncomment check for sockatmark()
Browse files Browse the repository at this point in the history
Uncomment the check for sockatmark() to ensure that the function
is declared in sys/socket.h, as a stub implementation was added
in the previous commit.

Signed-off-by: Chris Friedt <chrisfriedt@gmail.com>
  • Loading branch information
cfriedt committed Mar 24, 2024
1 parent c6f21a9 commit b5cb1da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/posix/headers/src/sys_socket_h.c
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ ZTEST(posix_headers, test_sys_socket_h)
zassert_not_null(sendto);
zassert_not_null(setsockopt);
zassert_not_null(shutdown);
/* zassert_not_null(sockatmark); */ /* not implemented */
zassert_not_null(sockatmark);
zassert_not_null(socket);
zassert_not_null(socketpair);
}
Expand Down

0 comments on commit b5cb1da

Please sign in to comment.