From: Atul Kumar Pant <atulpant.linux@gmail.com>
To: Shuah Khan <skhan@linuxfoundation.org>
Cc: linux-rtc@vger.kernel.org, a.zummo@towertech.it,
Alexandre Belloni <alexandre.belloni@bootlin.com>,
linux-kernel-mentees@lists.linuxfoundation.org,
linux-kernel@vger.kernel.org, linux-kselftest@vger.kernel.org,
shuah@kernel.org
Subject: Re: [PATCH v5] selftests: rtc: Fixes rtctest error handling.
Date: Thu, 17 Aug 2023 14:45:40 +0530 [thread overview]
Message-ID: <20230817091540.GA72739@atom0118> (raw)
In-Reply-To: <8d0c3075-22a0-bd13-45fe-f8c052e50588@linuxfoundation.org>
On Wed, Aug 16, 2023 at 09:59:30AM -0600, Shuah Khan wrote:
> On 7/17/23 15:15, Alexandre Belloni wrote:
> > On 17/07/2023 23:22:51+0530, Atul Kumar Pant wrote:
> > > Adds a check to verify if the rtc device file is valid or not
> > > and prints a useful error message if the file is not accessible.
> > >
> > > Signed-off-by: Atul Kumar Pant <atulpant.linux@gmail.com>
> >
> > Please collect and keep the tags you got on previous versions
> >
> > > ---
> > >
> > > changes since v4:
> > > Updated the commit message.
> > >
> > > changes since v3:
> > > Added Linux-kselftest and Linux-kernel mailing lists.
> > >
> > > 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);
>
> This should be skip not a fail. access() could for a number of reasons.
> Since the test isn't run when access() returns error, this would be a
> skip. Also the new message could be improved to use strerror() to
> print message with details on why access() failed.
> thanks,
> -- Shuah
Thank for the feedback. I have made the changes based on above
comments and updated the patch.
_______________________________________________
Linux-kernel-mentees mailing list
Linux-kernel-mentees@lists.linuxfoundation.org
https://lists.linuxfoundation.org/mailman/listinfo/linux-kernel-mentees
WARNING: multiple messages have this Message-ID (diff)
From: Atul Kumar Pant <atulpant.linux@gmail.com>
To: Shuah Khan <skhan@linuxfoundation.org>
Cc: Alexandre Belloni <alexandre.belloni@bootlin.com>,
a.zummo@towertech.it, shuah@kernel.org,
linux-kernel-mentees@lists.linuxfoundation.org,
linux-rtc@vger.kernel.org, linux-kselftest@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH v5] selftests: rtc: Fixes rtctest error handling.
Date: Thu, 17 Aug 2023 14:45:40 +0530 [thread overview]
Message-ID: <20230817091540.GA72739@atom0118> (raw)
In-Reply-To: <8d0c3075-22a0-bd13-45fe-f8c052e50588@linuxfoundation.org>
On Wed, Aug 16, 2023 at 09:59:30AM -0600, Shuah Khan wrote:
> On 7/17/23 15:15, Alexandre Belloni wrote:
> > On 17/07/2023 23:22:51+0530, Atul Kumar Pant wrote:
> > > Adds a check to verify if the rtc device file is valid or not
> > > and prints a useful error message if the file is not accessible.
> > >
> > > Signed-off-by: Atul Kumar Pant <atulpant.linux@gmail.com>
> >
> > Please collect and keep the tags you got on previous versions
> >
> > > ---
> > >
> > > changes since v4:
> > > Updated the commit message.
> > >
> > > changes since v3:
> > > Added Linux-kselftest and Linux-kernel mailing lists.
> > >
> > > 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);
>
> This should be skip not a fail. access() could for a number of reasons.
> Since the test isn't run when access() returns error, this would be a
> skip. Also the new message could be improved to use strerror() to
> print message with details on why access() failed.
> thanks,
> -- Shuah
Thank for the feedback. I have made the changes based on above
comments and updated the patch.
next prev parent reply other threads:[~2023-08-17 9:15 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-07-17 17:52 [PATCH v5] selftests: rtc: Fixes rtctest error handling Atul Kumar Pant
2023-07-17 17:52 ` Atul Kumar Pant
2023-07-17 21:15 ` Alexandre Belloni via Linux-kernel-mentees
2023-07-17 21:15 ` Alexandre Belloni
2023-08-16 15:59 ` Shuah Khan
2023-08-16 15:59 ` Shuah Khan
2023-08-17 9:15 ` Atul Kumar Pant [this message]
2023-08-17 9:15 ` Atul Kumar Pant
-- strict thread matches above, loose matches on Subject: below --
2023-07-22 6:07 Atul Kumar Pant
2023-07-22 6:07 ` Atul Kumar Pant
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=20230817091540.GA72739@atom0118 \
--to=atulpant.linux@gmail.com \
--cc=a.zummo@towertech.it \
--cc=alexandre.belloni@bootlin.com \
--cc=linux-kernel-mentees@lists.linuxfoundation.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-kselftest@vger.kernel.org \
--cc=linux-rtc@vger.kernel.org \
--cc=shuah@kernel.org \
--cc=skhan@linuxfoundation.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 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.