diff options
author | Paul Elder <paul.elder@pitt.edu> | 2017-06-28 23:40:21 +0900 |
---|---|---|
committer | Shuah Khan <shuahkh@osg.samsung.com> | 2017-06-30 16:15:04 -0600 |
commit | ab52a484455007b3c9c11e18f6d0eed6d8f2de4e (patch) | |
tree | 87d3718dcec095e23d7d1d8a68fac8dffea58c2d /tools/testing/selftests/kselftest.h | |
parent | 151b2732111f0743e764a7bc62d4f580341a62f3 (diff) | |
download | linux-rt-ab52a484455007b3c9c11e18f6d0eed6d8f2de4e.tar.gz |
kselftest: add ksft_print_msg() function to output general information
Add a generic information output function: ksft_print_msg()
Signed-off-by: Paul Elder <paul.elder@pitt.edu>
Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>
Diffstat (limited to 'tools/testing/selftests/kselftest.h')
-rw-r--r-- | tools/testing/selftests/kselftest.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tools/testing/selftests/kselftest.h b/tools/testing/selftests/kselftest.h index a00844e4c915..08e90c2cc5cb 100644 --- a/tools/testing/selftests/kselftest.h +++ b/tools/testing/selftests/kselftest.h @@ -55,6 +55,16 @@ static inline void ksft_print_cnts(void) printf("1..%d\n", ksft_test_num()); } +static inline void ksft_print_msg(const char *msg, ...) +{ + va_list args; + + va_start(args, msg); + printf("# "); + vprintf(msg, args); + va_end(args); +} + static inline void ksft_test_result_pass(const char *msg, ...) { va_list args; |