From: Dana Elfassy <delfassy@redhat.com>
To: shuah@kernel.org, usama.anjum@collabora.com,
eballetbo@kernel.org, linux-kselftest@vger.kernel.org,
linux-kernel@vger.kernel.org
Cc: Dana Elfassy <dangel101@gmail.com>
Subject: [PATCH] selftests/input: add tests for the EVIOCSCLOCKID ioctl
Date: Mon, 3 Jul 2023 11:18:01 +0300 [thread overview]
Message-ID: <20230703081801.900093-1-dangel101@gmail.com> (raw)
This patch introduces tests for the EVIOCSCLOCKID ioctl, for full
coverage of the different clkids
Signed-off-by: Dana Elfassy <dangel101@gmail.com>
---
This patch depends on '[v3] selftests/input: Introduce basic tests for evdev ioctls' [1] sent to the ML.
[1] https://patchwork.kernel.org/project/linux-input/patch/20230607153214.15933-1-eballetbo@kernel.org/
tools/testing/selftests/input/evioc-test.c | 32 ++++++++++++++++++++++
1 file changed, 32 insertions(+)
diff --git a/tools/testing/selftests/input/evioc-test.c b/tools/testing/selftests/input/evioc-test.c
index ad7b93fe39cf..81d5336d93ac 100644
--- a/tools/testing/selftests/input/evioc-test.c
+++ b/tools/testing/selftests/input/evioc-test.c
@@ -234,4 +234,36 @@ TEST(eviocsrep_set_repeat_settings)
selftest_uinput_destroy(uidev);
}
+TEST(eviocsclockid_set_clockid)
+{
+ struct selftest_uinput *uidev;
+ int clkid = 0;
+ int rc;
+
+ rc = selftest_uinput_create_device(&uidev, -1);
+ ASSERT_EQ(0, rc);
+ ASSERT_NE(NULL, uidev);
+
+ // case CLOCK_REALTIME
+ rc = ioctl(uidev->evdev_fd, EVIOCSCLOCKID, &clkid);
+ ASSERT_EQ(0, rc);
+
+ // case CLOCK_MONOTONIC
+ clkid = 1;
+ rc = ioctl(uidev->evdev_fd, EVIOCSCLOCKID, &clkid);
+ ASSERT_EQ(0, rc);
+
+ // case CLOCK_BOOTTIME
+ clkid = 7;
+ rc = ioctl(uidev->evdev_fd, EVIOCSCLOCKID, &clkid);
+ ASSERT_EQ(0, rc);
+
+ // case default
+ clkid = -1;
+ rc = ioctl(uidev->evdev_fd, EVIOCSCLOCKID, &clkid);
+ ASSERT_EQ(-1, rc);
+
+ selftest_uinput_destroy(uidev);
+}
+
TEST_HARNESS_MAIN
--
2.41.0
next reply other threads:[~2023-07-03 8:19 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-07-03 8:18 Dana Elfassy [this message]
2023-07-03 9:26 ` Enric Balletbo Serra
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=20230703081801.900093-1-dangel101@gmail.com \
--to=delfassy@redhat.com \
--cc=dangel101@gmail.com \
--cc=eballetbo@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-kselftest@vger.kernel.org \
--cc=shuah@kernel.org \
--cc=usama.anjum@collabora.com \
/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
all inboxes | Powered by JetHome®