On 06/15/2017 09:54 AM, Paul Elder wrote: > Make ksft_exit_skip() input an optional message string as the reason > for skipping all the tests and outputs it prior to exiting. > > Signed-off-by: Paul Elder <paul.elder@xxxxxxxx> > --- > tools/testing/selftests/kselftest.h | 7 +++++-- > 1 file changed, 5 insertions(+), 2 deletions(-) > > diff --git a/tools/testing/selftests/kselftest.h b/tools/testing/selftests/kselftest.h > index 1d874a50d957..be01f2d15472 100644 > --- a/tools/testing/selftests/kselftest.h > +++ b/tools/testing/selftests/kselftest.h > @@ -104,9 +104,12 @@ static inline int ksft_exit_xpass(void) > exit(KSFT_XPASS); > } > > -static inline int ksft_exit_skip(void) > +static inline int ksft_exit_skip(const char *msg) > { > - ksft_print_cnts(); > + if (msg) > + printf("1..%d # Skipped: %s\n", ksft_test_num(), msg); > + else > + ksft_print_cnts(); > exit(KSFT_SKIP); > } > > Applied this to linux-kselftest next for 4.13-rc1 thanks, -- Shuah -- To unsubscribe from this list: send the line "unsubscribe linux-kselftest" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html