From 3a0976dea38004fe497ff4f69ad329a6faa5bf93 Mon Sep 17 00:00:00 2001 From: Mark Johnston Date: Sat, 11 Sep 2021 12:56:07 -0400 Subject: [PATCH] lio_test: Specify a mode with O_CREAT Sponsored by: The FreeBSD Foundation --- tests/sys/aio/lio_test.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/sys/aio/lio_test.c b/tests/sys/aio/lio_test.c index 720fcc1fa94f..82d0384f6f76 100644 --- a/tests/sys/aio/lio_test.c +++ b/tests/sys/aio/lio_test.c @@ -223,7 +223,7 @@ ATF_TC_BODY(lio_listio_opcodes, tc) char buffer[6]; int fd; - fd = open("testfile", O_CREAT | O_RDWR); + fd = open("testfile", O_CREAT | O_RDWR, 0666); ATF_REQUIRE_MSG(fd >= 0, "open: %s", strerror(errno)); /* We start with numbers in a file and letters in memory... */ @@ -302,7 +302,7 @@ ATF_TC_BODY(lio_listio_invalid_opcode, tc) struct aiocb *list[] = {&sync_cb, &mlock_cb}; int fd; - fd = open("testfile", O_CREAT | O_RDWR); + fd = open("testfile", O_CREAT | O_RDWR, 0666); ATF_REQUIRE_MSG(fd >= 0, "open: %s", strerror(errno)); bzero(&sync_cb, sizeof(sync_cb));