From: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
To: Rasmus Villemoes <linux@rasmusvillemoes.dk>
Cc: Andrew Morton <akpm@linux-foundation.org>,
Tejun Heo <tj@kernel.org>,
linux-kernel@vger.kernel.org, Kees Cook <keescook@chromium.org>
Subject: Re: [PATCH 4/4] test_printf: test printf family at runtime
Date: Wed, 30 Sep 2015 09:38:06 +0300 [thread overview]
Message-ID: <1443595086.8361.272.camel@linux.intel.com> (raw)
In-Reply-To: <874miefemv.fsf@rasmusvillemoes.dk>
On Mon, 2015-09-28 at 22:55 +0200, Rasmus Villemoes wrote:
> On Mon, Sep 28 2015, Andy Shevchenko <
> andriy.shevchenko@linux.intel.com> wrote:
>
> > On Fri, 2015-09-25 at 19:41 +0200, Rasmus Villemoes wrote:
> > > This adds a simple module for testing the kernel's printf
> > > facilities. Previously, some %p extensions have caused a wrong
> > > return
> > > value in case the entire output didn't fit and/or been unusable
> > > in
> > > kasprintf(). This should help catch such issues. Also, it should
> > > help
> > > ensure that changes to the formatting algorithms don't break
> > > anything.
> > >
> > > I'm not sure if we have a struct dentry or struct file lying
> > > around
> > > at
> > > boot time or if we can fake one, but most %p extensions should be
> > > testable, as should the ordinary number and string formatting.
> > >
> > > The nature of vararg functions means we can't use a more
> > > conventional
> > > table-driven approach.
> > >
> > > For now, this is mostly a skeleton; contributions are very
> > > welcome. Some tests are/will be slightly annoying to write, since
> > > the
> > > expected output depends on stuff like CONFIG_*, sizeof(long),
> > > runtime
> > > values etc.
> >
> > Few comments below.
> > > +#define test(expect, fmt, ...)
> > > \
> > > + __test(expect, strlen(expect), fmt, ##__VA_ARGS__)
> >
> > Would be __test_m[em] / __test_s[tr] to distinguish them by name?
>
> Erh, no. The 'mem' version will only be used in a very few cases, and
> I
> really want the simple name "test" for the common case.
> > > +static void __init
> > > +test_basic(void)
> > > +{
> > > + test("", "");
> > > + test("100%", "100%%");
> > > + test("xxx%yyy", "xxx%cyyy", '%');
> > > + __test("xxx\0yyy", 7, "xxx%cyyy", '\0');
> >
> > And such pieces will be look better
> >
> > __test_str("xxx%yyy", "xxx%cyyy", '%');
> > __test_mem("xxx\0yyy", 7, "xxx%cyyy", '\0');
>
> I don't agree.
It's still better to distinguish what function does by names
test vs. __test confuses me.
But whatever, this is a test suite, not an actual code anyway.
> >Maybe commentary delimiter here and above where you have double
> >empty
> >line.
>
> And say what? I can avoid double empty lines if they bother you.
So, what was the reason to add them in the first place?
> > > +
> > > +MODULE_AUTHOR("Rasmus Villemoes <linux@rasmusvillemoes.dk>");
> > > +MODULE_LICENSE("GPL");
> >
> > GPL or ?..
>
> Honestly, I don't really care. Would you like BSD/GPL or what? I just
> copied from the majority of MODULE_LICENSE() instances.
You are the author, your choice. I'm okay with any applicable type.
--
Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Intel Finland Oy
next prev parent reply other threads:[~2015-09-30 6:38 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-09-25 17:41 [PATCH 0/4] printf stuff Rasmus Villemoes
2015-09-25 17:41 ` [PATCH 1/4] lib/vsprintf.c: handle invalid format specifiers more robustly Rasmus Villemoes
2015-09-28 8:08 ` Andy Shevchenko
2015-09-28 20:12 ` Rasmus Villemoes
2015-09-28 22:30 ` Kees Cook
2015-09-25 17:41 ` [PATCH 2/4] lib/vsprintf.c: also improve sanity check in bstr_printf() Rasmus Villemoes
2015-09-28 22:31 ` Kees Cook
2015-09-25 17:41 ` [PATCH 3/4] lib/vsprintf.c: Remove SPECIAL handling in pointer() Rasmus Villemoes
2015-09-28 8:55 ` Andy Shevchenko
2015-09-25 17:41 ` [PATCH 4/4] test_printf: test printf family at runtime Rasmus Villemoes
2015-09-28 9:12 ` Andy Shevchenko
2015-09-28 20:55 ` Rasmus Villemoes
2015-09-30 6:38 ` Andy Shevchenko [this message]
2015-09-30 8:56 ` Rasmus Villemoes
2015-09-28 22:38 ` Kees Cook
2015-09-29 7:10 ` Rasmus Villemoes
2015-09-29 17:32 ` Kees Cook
2015-09-30 9:05 ` Rasmus Villemoes
2015-09-30 15:30 ` [PATCH v2 0/4] printf stuff Rasmus Villemoes
2015-09-30 15:30 ` [PATCH v2 1/4] lib/vsprintf.c: handle invalid format specifiers more robustly Rasmus Villemoes
2015-09-30 15:30 ` [PATCH v2 2/4] lib/vsprintf.c: also improve sanity check in bstr_printf() Rasmus Villemoes
2015-09-30 15:30 ` [PATCH v2 3/4] lib/vsprintf.c: Remove SPECIAL handling in pointer() Rasmus Villemoes
2015-09-30 15:40 ` Andy Shevchenko
2015-09-30 15:30 ` [PATCH v2 4/4] test_printf: test printf family at runtime Rasmus Villemoes
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=1443595086.8361.272.camel@linux.intel.com \
--to=andriy.shevchenko@linux.intel.com \
--cc=akpm@linux-foundation.org \
--cc=keescook@chromium.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux@rasmusvillemoes.dk \
--cc=tj@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
Powered by JetHome