Home
last modified time | relevance | path

Searched refs:kunit_info (Results 1 – 9 of 9) sorted by relevance

/openbmc/linux/mm/kmsan/
H A Dkmsan_test.c159 kunit_info(test, "uninitialized kmalloc test (UMR report)\n"); in test_uninit_kmalloc()
173 kunit_info(test, "initialized kmalloc test (no reports)\n"); in test_init_kmalloc()
186 kunit_info(test, "initialized kzalloc test (no reports)\n"); in test_init_kzalloc()
198 kunit_info(test, "uninitialized stack variable (UMR report)\n"); in test_uninit_stack_var()
209 kunit_info(test, "initialized stack variable (no reports)\n"); in test_init_stack_var()
248 kunit_info(test, in test_params()
269 kunit_info(test, "uninitialized local passed to fn (UMR report)\n"); in test_uninit_multiple_params()
292 kunit_info( in test_uninit_kmsan_check_memory()
312 kunit_info(test, "pages initialized via vmap (no reports)\n"); in test_init_kmsan_vmap_vunmap()
342 kunit_info(test, "vmalloc buffer can be initialized (no reports)\n"); in test_init_vmalloc()
[all …]
/openbmc/linux/lib/kunit/
H A Dkunit-example-test.c39 kunit_info(test, "initializing\n"); in example_test_init()
50 kunit_info(test, "cleaning up\n"); in example_test_exit()
60 kunit_info(suite, "initializing suite\n"); in example_test_init_suite()
71 kunit_info(suite, "exiting suite\n"); in example_test_exit_suite()
81 kunit_info(test, "You should not see a line below."); in example_skip_test()
96 kunit_info(test, "You should see a line below."); in example_mark_skipped_test()
102 kunit_info(test, "You should see this line."); in example_mark_skipped_test()
H A Dkunit-test.c561 kunit_info(test, "Add newline\n"); in kunit_log_newline_test()
/openbmc/linux/lib/
H A Doverflow_kunit.c292 kunit_info(test, "%zu %s arithmetic tests finished\n", \
351 kunit_info(test, "got %lld\n", (s64)__d); \
353 kunit_info(test, "got %llu\n", (u64)__d); \
404 kunit_info(test, "%d sane shift tests finished\n", count); in shift_sane_test()
458 kunit_info(test, "%d overflow shift tests finished\n", count); in shift_overflow_test()
496 kunit_info(test, "%d truncate shift tests finished\n", count); in shift_truncate_test()
542 kunit_info(test, "%d nonsense shift tests finished\n", count); in shift_nonsense_test()
639 kunit_info(test, "%d allocation overflow tests finished\n", count); in overflow_allocation_test()
735 kunit_info(test, "%d overflow size helper tests finished\n", count); in overflow_size_helpers_test()
946 kunit_info(test, "%d overflows_type() tests finished\n", count); in overflows_type_test()
[all …]
H A Dmemcpy_kunit.c47 kunit_info(test, "ok: " TEST_OP "() " name "\n"); \
/openbmc/linux/mm/kfence/
H A Dkfence_test.c191 kunit_info(test, "%s: size=%zu, ctor=%ps\n", __func__, size, ctor); in setup_test_cache()
265 kunit_info(test, "%s: size=%zu, gfp=%x, policy=%s, cache=%i\n", __func__, size, gfp, in test_alloc()
/openbmc/linux/drivers/gpu/drm/tests/
H A Ddrm_mm_test.c1033 kunit_info(test, "%s fragmented insert of %u and %u insertions took %llu and %llu nsecs\n", in drm_test_mm_frag()
1149 kunit_info(test, "scan: hit [%llx, %llx], size=%lld, align=%lld, color=%ld\n", in show_scan()
1170 kunit_info(test, "%sHole [%llx - %llx, size %lld]%s\n", node1, in show_holes()
2217 kunit_info(suite, in drm_mm_suite_init()
H A Ddrm_buddy_test.c735 kunit_info(suite, "Testing DRM buddy manager, with random_seed=0x%x\n", random_seed); in drm_buddy_suite_init()
/openbmc/linux/include/kunit/
H A Dtest.h538 #define kunit_info(test, fmt, ...) \ macro