1 #include "test_binary_properties.h"
6 int main(int argc
, char **argv
) {
9 constexpr size_t bufsize
= sizeof(TEXT
);
11 ssize_t readsize
= bufsize
- 1;
12 ssize_t len
= read(CHILD_FD
, buf
, readsize
);
13 if (len
!= readsize
) {
16 buf
[readsize
] = '\0'; // Null terminator
17 if (close(CHILD_FD
) != 0)
19 if (strcmp(buf
, TEXT
) != 0)