test_info
test_info(buf, sizeof(buf));
test_info(buf, sizeof(buf));
void test_info(char *s, size_t len);
void test_info(const char *file, int line, const char *desc, ...)
#define TEST_info(...) test_info(__FILE__, __LINE__, __VA_ARGS__)
nlattr_add_string(nw, KTEST_ATTR_TEST_NAME, test_info->name);
nlattr_add_string(nw, KTEST_ATTR_TEST_DESCR, test_info->desc);
const struct ktest_test_info *test_info = &mod->info->tests[i];
if (attrs->test_name != NULL && strcmp(attrs->test_name, test_info->name))
int error = dump_mod_test(hdr, npt, mod, test_info);
const struct ktest_test_info *test_info = &info->tests[i];
if (!strcmp(attrs.test_name, test_info->name)) {
test = test_info;
struct ktest_module *mod, const struct ktest_test_info *test_info)