Searched refs:test_or_suite (Results 1 – 2 of 2) sorted by relevance
/linux-5.19.10/include/kunit/ |
D | test.h | 424 #define kunit_mark_skipped(test_or_suite, fmt, ...) \ argument 426 WRITE_ONCE((test_or_suite)->status, KUNIT_SKIPPED); \ 427 scnprintf((test_or_suite)->status_comment, \ 443 #define kunit_skip(test_or_suite, fmt, ...) \ argument 445 kunit_mark_skipped((test_or_suite), fmt, ##__VA_ARGS__);\ 446 kunit_try_catch_throw(&((test_or_suite)->try_catch)); \ 453 #define kunit_log(lvl, test_or_suite, fmt, ...) \ argument 456 kunit_log_append((test_or_suite)->log, fmt "\n", \
|
/linux-5.19.10/lib/kunit/ |
D | test.c | 145 static void kunit_print_ok_not_ok(void *test_or_suite, in kunit_print_ok_not_ok() argument 152 struct kunit_suite *suite = is_test ? NULL : test_or_suite; in kunit_print_ok_not_ok() 153 struct kunit *test = is_test ? test_or_suite : NULL; in kunit_print_ok_not_ok()
|