tests: More work on error handling

This commit is contained in:
Tibor Nagy
2019-02-24 00:46:26 +01:00
parent 0c539d6e4e
commit 2d027f0771
14 changed files with 126 additions and 52 deletions
+6 -2
View File
@@ -9,6 +9,10 @@ int main(void) {
ERROR_IF(creat, fd, == -1);
UNEXP_IF(creat, fd, < 0);
write(fd, "Hello World!\n", 13);
close(fd);
int written = write(fd, "Hello World!\n", 13);
ERROR_IF(write, written, == -1);
int c = close(fd);
ERROR_IF(close, c, == -1);
UNEXP_IF(close, c, != 0);
}