Searched refs:test_or_suite (Results 1 – 2 of 2) sorted by relevance
| /linux/include/kunit/ |
| A D | test.h | 689 #define kunit_mark_skipped(test_or_suite, fmt, ...) \ argument 691 WRITE_ONCE((test_or_suite)->status, KUNIT_SKIPPED); \ 692 scnprintf((test_or_suite)->status_comment, \ 708 #define kunit_skip(test_or_suite, fmt, ...) \ argument 710 kunit_mark_skipped((test_or_suite), fmt, ##__VA_ARGS__);\ 711 kunit_try_catch_throw(&((test_or_suite)->try_catch)); \ 718 #define kunit_log(lvl, test_or_suite, fmt, ...) \ argument 721 kunit_log_append((test_or_suite)->log, fmt "\n", \
|
| /linux/lib/kunit/ |
| A 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()
|
Completed in 13 milliseconds