Searched refs:test_or_suite (Results 1 – 2 of 2) sorted by relevance
/Linux-v6.1/include/kunit/ |
D | test.h | 388 #define kunit_mark_skipped(test_or_suite, fmt, ...) \ argument 390 WRITE_ONCE((test_or_suite)->status, KUNIT_SKIPPED); \ 391 scnprintf((test_or_suite)->status_comment, \ 407 #define kunit_skip(test_or_suite, fmt, ...) \ argument 409 kunit_mark_skipped((test_or_suite), fmt, ##__VA_ARGS__);\ 410 kunit_try_catch_throw(&((test_or_suite)->try_catch)); \ 417 #define kunit_log(lvl, test_or_suite, fmt, ...) \ argument 420 kunit_log_append((test_or_suite)->log, fmt "\n", \
|
/Linux-v6.1/lib/kunit/ |
D | test.c | 158 static void kunit_print_ok_not_ok(void *test_or_suite, in kunit_print_ok_not_ok() argument 165 struct kunit_suite *suite = is_test ? NULL : test_or_suite; in kunit_print_ok_not_ok() 166 struct kunit *test = is_test ? test_or_suite : NULL; in kunit_print_ok_not_ok()
|