Skip to content

Commit fc725a7

Browse files
committed
tests: posix: headers: uncomment check for sockatmark()
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>
1 parent 494493a commit fc725a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎tests/posix/headers/src/sys_socket_h.c‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ ZTEST(posix_headers, test_sys_socket_h)
115115
zassert_not_null(sendto);
116116
zassert_not_null(setsockopt);
117117
zassert_not_null(shutdown);
118-
/* zassert_not_null(sockatmark); */ /* not implemented */
118+
zassert_not_null(sockatmark);
119119
zassert_not_null(socket);
120120
zassert_not_null(socketpair);
121121
}

0 commit comments

Comments
 (0)