summaryrefslogtreecommitdiff
path: root/libc/test/src/sys/socket/linux/socketpair_test.cpp
AgeCommit message (Collapse)Author
2025-03-19[libc] Migrate sys/socket tests to use ErrnoCheckingTest. (#132107)Alexey Samsonov
Also use ErrnoSetterMatcher to verify the function return values and verify/clear out errno values. Fix the bug in ErrnoSetterMatcher error reporting machinery to properly convert errno values into errno names to make error messages easier to debug.
2024-09-19[libc] Add functions to send/recv messages (#106467)Michael Jones
This patch adds the necessary functions to send and receive messages over a socket. Those functions are: recv, recvfrom, recvmsg, send, sendto, sendmsg, and socketpair for testing.