Linux Kernel Mentees list
 help / color / mirror / Atom feed
From: Atul Kumar Pant <atulpant.linux@gmail.com>
To: a.zummo@towertech.it, alexandre.belloni@bootlin.com
Cc: shuah@kernel.org, Atul Kumar Pant <atulpant.linux@gmail.com>,
	linux-kernel-mentees@lists.linuxfoundation.org
Subject: [PATCH] selftests: Improves rtctest error handling.
Date: Sat,  8 Apr 2023 13:10:59 +0530	[thread overview]
Message-ID: <20230408074059.397065-1-atulpant.linux@gmail.com> (raw)

When running the rtctest without root privileges the test fails
expectedly, but prints the logs that are not useful to point to the issue.
Similarly, if we pass wrong rtc device file as an argument, the test
output failure logs do not point to the issue that the rtc file is
invalid.
To handle these issues, this patch adds checks to verify uid with which
the test is run and also if the rtc_file is valid.

Signed-off-by: Atul Kumar Pant <atulpant.linux@gmail.com>
---
 tools/testing/selftests/rtc/rtctest.c | 34 +++++++++++++++++++--------
 1 file changed, 24 insertions(+), 10 deletions(-)

diff --git a/tools/testing/selftests/rtc/rtctest.c b/tools/testing/selftests/rtc/rtctest.c
index 2b9d929a24ed..9564346c63eb 100644
--- a/tools/testing/selftests/rtc/rtctest.c
+++ b/tools/testing/selftests/rtc/rtctest.c
@@ -388,16 +388,30 @@ __constructor_order_last(void)
 
 int main(int argc, char **argv)
 {
-	switch (argc) {
-	case 2:
-		rtc_file = argv[1];
-		/* FALLTHROUGH */
-	case 1:
-		break;
-	default:
-		fprintf(stderr, "usage: %s [rtcdev]\n", argv[0]);
-		return 1;
+    int ret = -1;
+
+    // Verify if the test is run as root
+    if (getuid() != 0) {
+		ksft_exit_skip("[ERROR]: Please run the test as root - Exiting.\n");
+    }
+
+    switch (argc) {
+    case 2:
+        rtc_file = argv[1];
+        /* FALLTHROUGH */
+    case 1:
+        break;
+    default:
+        fprintf(stderr, "usage: %s [rtcdev]\n", argv[0]);
+        return 1;
 	}
 
-	return test_harness_run(argc, argv);
+    // Run the test if rtc_file is valid
+    if (access(rtc_file, F_OK) == 0) {
+	    ret = test_harness_run(argc, argv);
+    } else {
+		ksft_exit_skip("[ERROR]: %s : File does not exists - Exiting\n", rtc_file);
+    }
+
+    return ret;
 }
-- 
2.25.1

_______________________________________________
Linux-kernel-mentees mailing list
Linux-kernel-mentees@lists.linuxfoundation.org
https://lists.linuxfoundation.org/mailman/listinfo/linux-kernel-mentees

             reply	other threads:[~2023-04-08  7:41 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-04-08  7:40 Atul Kumar Pant [this message]
2023-04-08 11:50 ` [PATCH] selftests: Improves rtctest error handling Alexandre Belloni via Linux-kernel-mentees
2023-04-11  4:51   ` Atul Kumar Pant
2023-04-18  8:01     ` Alexandre Belloni via Linux-kernel-mentees

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=20230408074059.397065-1-atulpant.linux@gmail.com \
    --to=atulpant.linux@gmail.com \
    --cc=a.zummo@towertech.it \
    --cc=alexandre.belloni@bootlin.com \
    --cc=linux-kernel-mentees@lists.linuxfoundation.org \
    --cc=shuah@kernel.org \
    /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