public inbox for linux-fsdevel@vger.kernel.org
 help / color / mirror / Atom feed
From: Dorjoy Chowdhury <dorjoychy111@gmail.com>
To: linux-fsdevel@vger.kernel.org
Cc: linux-kernel@vger.kernel.org, viro@zeniv.linux.org.uk,
	brauner@kernel.org, jack@suse.cz, jlayton@kernel.org,
	chuck.lever@oracle.com, alex.aring@gmail.com, arnd@arndb.de,
	adilger@dilger.ca
Subject: [PATCH v3 2/4] kselftest/openat2: test for O_REGULAR flag
Date: Tue, 27 Jan 2026 23:58:18 +0600	[thread overview]
Message-ID: <20260127180109.66691-3-dorjoychy111@gmail.com> (raw)
In-Reply-To: <20260127180109.66691-1-dorjoychy111@gmail.com>

Just a happy path test.

Signed-off-by: Dorjoy Chowdhury <dorjoychy111@gmail.com>
---
 .../testing/selftests/openat2/openat2_test.c  | 37 ++++++++++++++++++-
 1 file changed, 36 insertions(+), 1 deletion(-)

diff --git a/tools/testing/selftests/openat2/openat2_test.c b/tools/testing/selftests/openat2/openat2_test.c
index 0e161ef9e9e4..011ebc9af4e5 100644
--- a/tools/testing/selftests/openat2/openat2_test.c
+++ b/tools/testing/selftests/openat2/openat2_test.c
@@ -320,8 +320,42 @@ void test_openat2_flags(void)
 	}
 }
 
+#ifndef O_REGULAR
+#define O_REGULAR 040000000
+#endif
+
+#ifndef ENOTREG
+#define ENOTREG 134
+#endif
+
+void test_openat2_o_regular_flag(void)
+{
+	if (!openat2_supported) {
+		ksft_test_result_skip("Skipping %s as openat2 is not supported\n", __func__);
+		return;
+	}
+
+	struct open_how how = {
+		.flags = O_REGULAR | O_RDONLY
+	};
+
+	int fd = sys_openat2(AT_FDCWD, "/dev/null", &how);
+
+	if (fd == ENOENT) {
+		ksft_test_result_skip("Skipping %s as there is no /dev/null\n", __func__);
+		return;
+	}
+
+	if (fd != -ENOTREG) {
+		ksft_test_result_fail("openat2 should return ENOTREG\n");
+		return;
+	}
+
+	ksft_test_result_pass("%s succeeded\n", __func__);
+}
+
 #define NUM_TESTS (NUM_OPENAT2_STRUCT_VARIATIONS * NUM_OPENAT2_STRUCT_TESTS + \
-		   NUM_OPENAT2_FLAG_TESTS)
+		   NUM_OPENAT2_FLAG_TESTS + 1)
 
 int main(int argc, char **argv)
 {
@@ -330,6 +364,7 @@ int main(int argc, char **argv)
 
 	test_openat2_struct();
 	test_openat2_flags();
+	test_openat2_o_regular_flag();
 
 	if (ksft_get_fail_cnt() + ksft_get_error_cnt() > 0)
 		ksft_exit_fail();
-- 
2.52.0


  parent reply	other threads:[~2026-01-27 18:01 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-01-27 17:58 [PATCH v3 0/4] O_REGULAR flag support for open Dorjoy Chowdhury
2026-01-27 17:58 ` [PATCH v3 1/4] open: new O_REGULAR flag support Dorjoy Chowdhury
2026-01-27 23:23   ` Aleksa Sarai
2026-01-28  7:12     ` Mateusz Guzik
2026-01-28 16:57       ` Dorjoy Chowdhury
2026-01-28 19:26       ` Aleksa Sarai
2026-01-27 23:52   ` Jeff Layton
2026-01-28 15:36     ` Dorjoy Chowdhury
2026-01-28 15:51       ` Jeff Layton
2026-01-28 16:29         ` Dorjoy Chowdhury
2026-01-29 12:33         ` Christian Brauner
2026-01-29 13:12           ` Jeff Layton
2026-01-29 13:42             ` Jeff Layton
2026-02-18 18:26             ` Dorjoy Chowdhury
2026-02-18 19:01               ` Jeff Layton
2026-02-18 19:19                 ` Dorjoy Chowdhury
2026-02-18 19:32                   ` Jeff Layton
2026-02-18 19:44                     ` Dorjoy Chowdhury
2026-01-29 14:01           ` Jeff Layton
2026-01-29 10:49   ` Christian Brauner
2026-01-29 16:55     ` Dorjoy Chowdhury
2026-01-29 17:03     ` Aleksa Sarai
2026-01-29 17:41       ` Dorjoy Chowdhury
2026-01-27 17:58 ` Dorjoy Chowdhury [this message]
2026-01-27 17:58 ` [PATCH v3 3/4] sparc/fcntl.h: convert O_* flag macros from hex to octal Dorjoy Chowdhury
2026-01-27 17:58 ` [PATCH v3 4/4] mips/fcntl.h: " Dorjoy Chowdhury

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20260127180109.66691-3-dorjoychy111@gmail.com \
    --to=dorjoychy111@gmail.com \
    --cc=adilger@dilger.ca \
    --cc=alex.aring@gmail.com \
    --cc=arnd@arndb.de \
    --cc=brauner@kernel.org \
    --cc=chuck.lever@oracle.com \
    --cc=jack@suse.cz \
    --cc=jlayton@kernel.org \
    --cc=linux-fsdevel@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=viro@zeniv.linux.org.uk \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox