Message ID | CANeU7QkQXoSO+wDDMUfsFuuhavt+YLZXiCCKuqNLTuq3aMc3rQ@mail.gmail.com (mailing list archive) |
---|---|
State | Mainlined, archived |
Headers | show |
On 01/23/2018 03:38 PM, Christopher Li wrote: > yes, I was thinking some thing like this, > but I haven't give it a lot of test. > >> diff --git a/validation/test-suite b/validation/test-suite > index cf151a3..5e10942 100755 > --- a/validation/test-suite > +++ b/validation/test-suite > @@ -31,6 +31,7 @@ known_ko_tests=0 > > # defaults to not verbose > [ -z "$V" ] && V=0 > +[ $V -eq 0 ] && quiet=1 || quiet=0 > > ## Fine with me. Acked-by: Randy Dunlap <rdunlap@infradead.org> Tested-by: Randy Dunlap <rdunlap@infradead.org> Thanks.
On Tue, Jan 23, 2018 at 5:38 PM, Randy Dunlap <rdunlap@infradead.org> wrote: >>> diff --git a/validation/test-suite b/validation/test-suite >> index cf151a3..5e10942 100755 >> --- a/validation/test-suite >> +++ b/validation/test-suite >> @@ -31,6 +31,7 @@ known_ko_tests=0 >> >> # defaults to not verbose >> [ -z "$V" ] && V=0 >> +[ $V -eq 0 ] && quiet=1 || quiet=0 >> >> ## > > Fine with me. > > Acked-by: Randy Dunlap <rdunlap@infradead.org> > Tested-by: Randy Dunlap <rdunlap@infradead.org> > I consider that as a minor tweak of your original patch. May I apply that change and keep you as the author of the patch? Thanks Chris -- To unsubscribe from this list: send the line "unsubscribe linux-sparse" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
On 01/24/2018 11:19 AM, Christopher Li wrote: > On Tue, Jan 23, 2018 at 5:38 PM, Randy Dunlap <rdunlap@infradead.org> wrote: >>>> diff --git a/validation/test-suite b/validation/test-suite >>> index cf151a3..5e10942 100755 >>> --- a/validation/test-suite >>> +++ b/validation/test-suite >>> @@ -31,6 +31,7 @@ known_ko_tests=0 >>> >>> # defaults to not verbose >>> [ -z "$V" ] && V=0 >>> +[ $V -eq 0 ] && quiet=1 || quiet=0 >>> >>> ## >> >> Fine with me. >> >> Acked-by: Randy Dunlap <rdunlap@infradead.org> >> Tested-by: Randy Dunlap <rdunlap@infradead.org> >> > I consider that as a minor tweak of your original patch. > May I apply that change and keep you as the author of the > patch? Sure, no problem. Thanks.
--- a/validation/test-suite +++ b/validation/test-suite @@ -31,6 +31,7 @@ known_ko_tests=0 # defaults to not verbose [ -z "$V" ] && V=0 +[ $V -eq 0 ] && quiet=1 || quiet=0 ##