From: Chris J Arges <chris.j.arges@canonical.com>
To: Satoru Takeuchi <satoru.takeuchi@gmail.com>
Cc: Steven Rostedt <rostedt@goodmis.org>,
LKML <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] ktest: add ability to skip during BISECT_MANUAL
Date: Mon, 08 Sep 2014 12:51:12 -0500 [thread overview]
Message-ID: <540DEC90.4020907@canonical.com> (raw)
In-Reply-To: <CAMym5wtXPOd+5FQiXatpnM-TLkyabA=ZV6aj=wxe-=Bn83B5qw@mail.gmail.com>
Satoru,
Thanks for the review.
Steven,
When you have time, let me know if there are any issues with this being
applied.
--chris j arges
On 08/30/2014 08:06 AM, Satoru Takeuchi wrote:
> Hi Chris,
>
> Sorry for late reply.
>
> 2014-08-28 3:26 GMT+09:00 Chris J Arges <chris.j.arges@canonical.com>:
>
>> When doing a manual bisect, a build can fail or a test can be inconclusive.
>> In these cases it would be helpful to be able to skip the test entirely.
>>
>> Signed-off-by: Chris J Arges <chris.j.arges@canonical.com>
>
> It look good to me.
>
> Reviewed-by: Satoru Takeuchi <satoru.takeuchi@gmail.com>
>
> Thanks,
> Satoru
>
>>
>> ---
>> tools/testing/ktest/ktest.pl | 6 ++++--
>> 1 file changed, 4 insertions(+), 2 deletions(-)
>>
>> diff --git a/tools/testing/ktest/ktest.pl b/tools/testing/ktest/ktest.pl
>> index 55ab700..72010f4 100755
>> --- a/tools/testing/ktest/ktest.pl
>> +++ b/tools/testing/ktest/ktest.pl
>> @@ -2336,15 +2336,17 @@ sub success {
>>
>> sub answer_bisect {
>> for (;;) {
>> - doprint "Pass or fail? [p/f]";
>> + doprint "Pass, fail, or skip? [p/f/s]";
>> my $ans = <STDIN>;
>> chomp $ans;
>> if ($ans eq "p" || $ans eq "P") {
>> return 1;
>> } elsif ($ans eq "f" || $ans eq "F") {
>> return 0;
>> + } elsif ($ans eq "s" || $ans eq "S") {
>> + return -1;
>> } else {
>> - print "Please answer 'P' or 'F'\n";
>> + print "Please answer 'p', 'f', or 's'\n";
>> }
>> }
>> }
>> --
>> 1.9.1
>>
>
prev parent reply other threads:[~2014-09-08 17:51 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-08-27 18:26 [PATCH] ktest: add ability to skip during BISECT_MANUAL Chris J Arges
[not found] ` <CAMym5wtmgsAUP6C-eYgMKJcbiPCUVJ-jZW0PFtv4Mwvr3S9jdw@mail.gmail.com>
2014-08-30 13:06 ` Satoru Takeuchi
2014-09-08 17:51 ` Chris J Arges [this message]
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=540DEC90.4020907@canonical.com \
--to=chris.j.arges@canonical.com \
--cc=linux-kernel@vger.kernel.org \
--cc=rostedt@goodmis.org \
--cc=satoru.takeuchi@gmail.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