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 <[email protected]>
  • Loading branch information
cfriedt committed Mar 27, 2024
1 parent 494493a commit fc725a7
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 fc725a7

Please sign in to comment.