Date: Wed, 8 Sep 2021 15:41:26 GMT From: Mark Johnston <markj@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: 8b83b656a507 - main - path_test: Fix the unix socket test Message-ID: <202109081541.188FfQnE004174@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by markj: URL: https://cgit.FreeBSD.org/src/commit/?id=8b83b656a507ee767fcb6921985720d1df61101b commit 8b83b656a507ee767fcb6921985720d1df61101b Author: Mark Johnston <markj@FreeBSD.org> AuthorDate: 2021-09-08 14:57:04 +0000 Commit: Mark Johnston <markj@FreeBSD.org> CommitDate: 2021-09-08 15:41:19 +0000 path_test: Fix the unix socket test The intent was to specify O_PATH to open(2). MFC after: 1 week Sponsored by: The FreeBSD Foundation --- tests/sys/file/path_test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/sys/file/path_test.c b/tests/sys/file/path_test.c index 50a77f16736c..0265aa095720 100644 --- a/tests/sys/file/path_test.c +++ b/tests/sys/file/path_test.c @@ -865,7 +865,7 @@ ATF_TC_BODY(path_unix, tc) ATF_REQUIRE_MSG(bind(sd, (struct sockaddr *)&sun, SUN_LEN(&sun)) == 0, FMT_ERR("bind")); - pathfd = open(path, O_RDONLY); + pathfd = open(path, O_PATH); ATF_REQUIRE_ERRNO(EOPNOTSUPP, pathfd < 0); CHECKED_CLOSE(sd);
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202109081541.188FfQnE004174>