strace/tests/unix-pair-send-recv.expected
Dmitry V. Levin 374dc48dbd tests: check decoding and dumping of send and recv syscalls
* tests/unix-pair-send-recv.c: New file.
* tests/unix-pair-send-recv.expected: Likewise.
* tests/unix-pair-send-recv.test: New test.
* tests/.gitignore: Add unix-pair-send-recv.
* tests/Makefile.am (check_PROGRAMS): Likewise.
(DECODER_TESTS): Add unix-pair-send-recv.test.
(EXTRA_DIST): Add unix-pair-send-recv.expected.
2016-07-19 17:46:33 +00:00

11 lines
647 B
Plaintext

send(0, "abcdefghijklmnopqrstuvwxyz", 26, MSG_DONTROUTE) = 26
| 00000 61 62 63 64 65 66 67 68 69 6a 6b 6c 6d 6e 6f 70 abcdefghijklmnop |
| 00010 71 72 73 74 75 76 77 78 79 7a qrstuvwxyz |
recv(1, "abcdefghijklmnopqrstuvwxyz", 26, MSG_WAITALL) = 26
send(1, "zyxwvutsrqponmlkjihgfedcba", 26, MSG_DONTROUTE) = 26
recv(0, "zyxwvutsrqponmlkjihgfedcba", 26, MSG_WAITALL) = 26
| 00000 7a 79 78 77 76 75 74 73 72 71 70 6f 6e 6d 6c 6b zyxwvutsrqponmlk |
| 00010 6a 69 68 67 66 65 64 63 62 61 jihgfedcba |
recv(0, NULL, 26, MSG_DONTWAIT) = -1 EBADF (Bad file descriptor)
+++ exited with 0 +++