summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2023-01-31 12:16:41 -0500
committerTavian Barnes <tavianator@tavianator.com>2023-01-31 12:16:52 -0500
commit88525617e977b2b24315e8a7bc565c2975cdf345 (patch)
tree795dc1fd4a63ac41f96720c666edbe6da6a9270d
parent52537ad1cb46450f0b4eed090f5adfa9cbaeeb02 (diff)
tests: Use close() wrappers
-rw-r--r--tests/mksock.c2
-rw-r--r--tests/xtouch.c6
2 files changed, 3 insertions, 5 deletions
diff --git a/tests/mksock.c b/tests/mksock.c
index 05edbeb..42ef322 100644
--- a/tests/mksock.c
+++ b/tests/mksock.c
@@ -100,7 +100,7 @@ int main(int argc, char *argv[]) {
ret = EXIT_FAILURE;
}
- if (close(fd) != 0) {
+ if (xclose(fd) != 0) {
errmsg(cmd, path);
ret = EXIT_FAILURE;
}
diff --git a/tests/xtouch.c b/tests/xtouch.c
index 506c73d..7e29547 100644
--- a/tests/xtouch.c
+++ b/tests/xtouch.c
@@ -104,13 +104,11 @@ static int xtouch(const struct args *args, const char *path) {
}
if (futimens(fd, args->times) != 0) {
- int error = errno;
- close(fd);
- errno = error;
+ close_quietly(fd);
return -1;
}
- return close(fd);
+ return xclose(fd);
}
}