* [PATCH v3] selftests: rtc: Improves rtctest error handling.
@ 2023-06-25 16:47 Atul Kumar Pant
2023-06-30 14:08 ` Alexandre Belloni via Linux-kernel-mentees
0 siblings, 1 reply; 3+ messages in thread
From: Atul Kumar Pant @ 2023-06-25 16:47 UTC (permalink / raw)
To: a.zummo, alexandre.belloni; +Cc: shuah, Atul Kumar Pant, linux-kernel-mentees
When running the rtctest if we pass wrong rtc device file as an argument
the test fails expectedly, but prints the logs that are not useful
to point out the issue.
To handle this, the patch adds a checks to verify if the rtc_file is valid.
Signed-off-by: Atul Kumar Pant <atulpant.linux@gmail.com>
---
changes since v2:
Changed error message when rtc file does not exist.
changes since v1:
Removed check for uid=0
If rtc file is invalid, then exit the test.
tools/testing/selftests/rtc/rtctest.c | 11 ++++++++++-
1 file changed, 10 insertions(+), 1 deletion(-)
diff --git a/tools/testing/selftests/rtc/rtctest.c b/tools/testing/selftests/rtc/rtctest.c
index 63ce02d1d5cc..630fef735c7e 100644
--- a/tools/testing/selftests/rtc/rtctest.c
+++ b/tools/testing/selftests/rtc/rtctest.c
@@ -17,6 +17,7 @@
#include <unistd.h>
#include "../kselftest_harness.h"
+#include "../kselftest.h"
#define NUM_UIE 3
#define ALARM_DELTA 3
@@ -419,6 +420,8 @@ __constructor_order_last(void)
int main(int argc, char **argv)
{
+ int ret = -1;
+
switch (argc) {
case 2:
rtc_file = argv[1];
@@ -430,5 +433,11 @@ int main(int argc, char **argv)
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_fail_msg("[ERROR]: Cannot access rtc file %s - 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
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH v3] selftests: rtc: Improves rtctest error handling.
2023-06-25 16:47 [PATCH v3] selftests: rtc: Improves rtctest error handling Atul Kumar Pant
@ 2023-06-30 14:08 ` Alexandre Belloni via Linux-kernel-mentees
2023-07-13 16:19 ` Shuah Khan
0 siblings, 1 reply; 3+ messages in thread
From: Alexandre Belloni via Linux-kernel-mentees @ 2023-06-30 14:08 UTC (permalink / raw)
To: Atul Kumar Pant; +Cc: a.zummo, shuah, linux-kernel-mentees
On 25/06/2023 22:17:48+0530, Atul Kumar Pant wrote:
> When running the rtctest if we pass wrong rtc device file as an argument
> the test fails expectedly, but prints the logs that are not useful
> to point out the issue.
> To handle this, the patch adds a checks to verify if the rtc_file is valid.
>
> Signed-off-by: Atul Kumar Pant <atulpant.linux@gmail.com>
Acked-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
> ---
>
> changes since v2:
> Changed error message when rtc file does not exist.
>
> changes since v1:
> Removed check for uid=0
> If rtc file is invalid, then exit the test.
>
> tools/testing/selftests/rtc/rtctest.c | 11 ++++++++++-
> 1 file changed, 10 insertions(+), 1 deletion(-)
>
> diff --git a/tools/testing/selftests/rtc/rtctest.c b/tools/testing/selftests/rtc/rtctest.c
> index 63ce02d1d5cc..630fef735c7e 100644
> --- a/tools/testing/selftests/rtc/rtctest.c
> +++ b/tools/testing/selftests/rtc/rtctest.c
> @@ -17,6 +17,7 @@
> #include <unistd.h>
>
> #include "../kselftest_harness.h"
> +#include "../kselftest.h"
>
> #define NUM_UIE 3
> #define ALARM_DELTA 3
> @@ -419,6 +420,8 @@ __constructor_order_last(void)
>
> int main(int argc, char **argv)
> {
> + int ret = -1;
> +
> switch (argc) {
> case 2:
> rtc_file = argv[1];
> @@ -430,5 +433,11 @@ int main(int argc, char **argv)
> 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_fail_msg("[ERROR]: Cannot access rtc file %s - Exiting\n", rtc_file);
> +
> + return ret;
> }
> --
> 2.25.1
>
--
Alexandre Belloni, co-owner and COO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
_______________________________________________
Linux-kernel-mentees mailing list
Linux-kernel-mentees@lists.linuxfoundation.org
https://lists.linuxfoundation.org/mailman/listinfo/linux-kernel-mentees
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH v3] selftests: rtc: Improves rtctest error handling.
2023-06-30 14:08 ` Alexandre Belloni via Linux-kernel-mentees
@ 2023-07-13 16:19 ` Shuah Khan
0 siblings, 0 replies; 3+ messages in thread
From: Shuah Khan @ 2023-07-13 16:19 UTC (permalink / raw)
To: Alexandre Belloni, Atul Kumar Pant; +Cc: a.zummo, shuah, linux-kernel-mentees
On 6/30/23 08:08, Alexandre Belloni wrote:
> On 25/06/2023 22:17:48+0530, Atul Kumar Pant wrote:
>> When running the rtctest if we pass wrong rtc device file as an argument
>> the test fails expectedly, but prints the logs that are not useful
>> to point out the issue.
>> To handle this, the patch adds a checks to verify if the rtc_file is valid.
>>
>> Signed-off-by: Atul Kumar Pant <atulpant.linux@gmail.com>
> Acked-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
>
>> ---
>>
>> changes since v2:
>> Changed error message when rtc file does not exist.
>>
>> changes since v1:
>> Removed check for uid=0
>> If rtc file is invalid, then exit the test.
>>
Missing mailing lists - please resend with cc to linux-kselftest
and linux-kernel mailing lists. Hint: Run get_maintainers script
thanks,
-- Shuah
_______________________________________________
Linux-kernel-mentees mailing list
Linux-kernel-mentees@lists.linuxfoundation.org
https://lists.linuxfoundation.org/mailman/listinfo/linux-kernel-mentees
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2023-07-13 16:19 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-06-25 16:47 [PATCH v3] selftests: rtc: Improves rtctest error handling Atul Kumar Pant
2023-06-30 14:08 ` Alexandre Belloni via Linux-kernel-mentees
2023-07-13 16:19 ` Shuah Khan
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.