git: 8b83b656a507 - main - path_test: Fix the unix socket test

Mark Johnston markj at FreeBSD.org
Wed Sep 8 15:41:27 UTC 2021


The branch main has been updated by markj:

URL: https://cgit.FreeBSD.org/src/commit/?id=8b83b656a507ee767fcb6921985720d1df61101b

commit 8b83b656a507ee767fcb6921985720d1df61101b
Author:     Mark Johnston <markj at FreeBSD.org>
AuthorDate: 2021-09-08 14:57:04 +0000
Commit:     Mark Johnston <markj at 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);


More information about the dev-commits-src-all mailing list