Searched refs:test_or_suite (Results 1 – 2 of 2) sorted by relevance
| /include/kunit/ |
| D | attributes.h | 31 void kunit_print_attr(void *test_or_suite, bool is_test, unsigned int test_level);
|
| D | test.h | 573 #define kunit_mark_skipped(test_or_suite, fmt, ...) \ argument 575 WRITE_ONCE((test_or_suite)->status, KUNIT_SKIPPED); \ 576 scnprintf((test_or_suite)->status_comment, \ 592 #define kunit_skip(test_or_suite, fmt, ...) \ argument 594 kunit_mark_skipped((test_or_suite), fmt, ##__VA_ARGS__);\ 595 kunit_try_catch_throw(&((test_or_suite)->try_catch)); \ 602 #define kunit_log(lvl, test_or_suite, fmt, ...) \ argument 605 kunit_log_append((test_or_suite)->log, fmt, \
|