Re: [RFC PATCH] kunit: Support skipped tests

2020-05-14 Thread Marco Elver
On Wed, 13 May 2020 at 06:30, David Gow wrote: > > This is a proof-of-concept to support "skipping" tests. > > The kunit_mark_skipped() macro marks the current test as "skipped", with > the provided reason. The kunit_skip() macro will mark the test as > skipped, and abort the test. > > The TAP

Re: [RFC PATCH] kunit: Support skipped tests

2020-05-14 Thread Brendan Higgins
On Tue, May 12, 2020 at 9:30 PM David Gow wrote: > > This is a proof-of-concept to support "skipping" tests. > > The kunit_mark_skipped() macro marks the current test as "skipped", with > the provided reason. The kunit_skip() macro will mark the test as > skipped, and abort the test. > > The TAP

RE: [RFC PATCH] kunit: Support skipped tests

2020-05-13 Thread Bird, Tim
> -Original Message- > From: David Gow > > This is a proof-of-concept to support "skipping" tests. > > The kunit_mark_skipped() macro marks the current test as "skipped", with > the provided reason. The kunit_skip() macro will mark the test as > skipped, and abort the test. > > The

Re: [RFC PATCH] kunit: Support skipped tests

2020-05-13 Thread Alan Maguire
On Tue, 12 May 2020, David Gow wrote: > This is a proof-of-concept to support "skipping" tests. > Really glad to see skip support; nice work! > The kunit_mark_skipped() macro marks the current test as "skipped", with > the provided reason. The kunit_skip() macro will mark the test as >

[RFC PATCH] kunit: Support skipped tests

2020-05-12 Thread David Gow
This is a proof-of-concept to support "skipping" tests. The kunit_mark_skipped() macro marks the current test as "skipped", with the provided reason. The kunit_skip() macro will mark the test as skipped, and abort the test. The TAP specification supports this "SKIP directive" as a comment after