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);
}
+7 -2
View File
@@ -21,6 +21,11 @@ int main(void) {
printf("fd %d duped into fd %d\n", newfd, newfd2);
close(newfd);
close(newfd2);
int c1 = close(newfd);
ERROR_IF(close, c1, == -1);
UNEXP_IF(close, c1, != 0);
int c2 = close(newfd2);
ERROR_IF(close, c2, == -1);
UNEXP_IF(close, c2, != 0);
}