Home
last modified time | relevance | path

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

/linux/arch/s390/lib/
H A Dtest_unwind.c39 kunit_err(current_test, "%s\n", p); in print_backtrace()
59 kunit_err(current_test, "failed to allocate backtrace buffer\n"); in test_unwind()
74 kunit_err(current_test, "unwind state reliable but addr is 0\n"); in test_unwind()
86 kunit_err(current_test, "backtrace buffer is too small\n"); in test_unwind()
98 kunit_err(current_test, "unwind error\n"); in test_unwind()
102 kunit_err(current_test, "unwindme_func2 and unwindme_func1 not found\n"); in test_unwind()
106 kunit_err(current_test, "Maximum number of frames exceeded\n"); in test_unwind()
110 kunit_err(current_test, "arch_rethook_trampoline+0x0 in unwinding results\n"); in test_unwind()
207 kunit_err(current_test, "register_kretprobe failed %d\n", ret); in test_unwind_kretprobe()
258 kunit_err(current_test, "register_kprobe failed %d\n", ret); in test_unwind_kprobe()
[all …]
/linux/lib/kunit/
H A Dtry-catch.c80 kunit_err(test, "try faulted: last line seen %s:%d\n", in kunit_try_catch_run()
83 kunit_err(test, "try faulted\n"); in kunit_try_catch_run()
85 kunit_err(test, "try timed out\n"); in kunit_try_catch_run()
87 kunit_err(test, "Unknown error: %d\n", exit_code); in kunit_try_catch_run()
H A Dtest.c57 kunit_err(current->kunit_test, "%s:%d: %s", file, line, buffer); in __kunit_fail_current_test_impl()
269 kunit_err(test, in kunit_print_string_stream()
272 kunit_err(test, "%s", fragment->fragment); in kunit_print_string_stream()
274 kunit_err(test, "\n"); in kunit_print_string_stream()
276 kunit_err(test, "%s", buf); in kunit_print_string_stream()
440 kunit_err(test, "failed to initialize: %d\n", ret); in kunit_run_case_internal()
522 kunit_err(test, "test case cleanup timed out\n"); in kunit_catch_run_case_cleanup()
528 kunit_err(test, "internal error occurred during test case cleanup: %d\n", in kunit_catch_run_case_cleanup()
534 kunit_err(test, "test aborted during cleanup. continuing without cleaning up\n"); in kunit_catch_run_case_cleanup()
551 kunit_err(test, "test case timed out\n"); in kunit_catch_run_case()
[all …]
/linux/drivers/android/tests/
H A Dbinder_alloc_kunit.c155 kunit_err(test, "expect alloc but is %s at page index %d\n", in check_buffer_pages_allocated()
195 kunit_err(test, "expect lru but is %s at page index %d\n", in binder_alloc_test_free_buf()
218 kunit_err(test, "expect free but is %s at page index %d\n", in binder_alloc_test_free_page()
317 kunit_err(test, "case %lu: [%s] | %s - %s - %s", *runs, in permute_frees()
507 kunit_err(test, "Failed to initialize test freelist\n"); in binder_alloc_test_init()
514 kunit_err(test, "Failed to attach mm\n"); in binder_alloc_test_init()
523 kunit_err(test, "Failed to open binder alloc test driver file\n"); in binder_alloc_test_init()
531 kunit_err(test, "Could not map the test's transaction memory\n"); in binder_alloc_test_init()
/linux/drivers/gpu/drm/tests/
H A Ddrm_dp_mst_helper_test.c505 kunit_err(test, "%pV", vaf); in drm_test_dp_mst_msg_printf()
532 kunit_err(test, "Expected:"); in drm_test_dp_mst_sideband_msg_req_decode()
534 kunit_err(test, "Got:"); in drm_test_dp_mst_sideband_msg_req_decode()
/linux/kernel/
H A Dcrash_core_test.c15 kunit_err(test, "max_ranges (%u) < nr_initial_ranges (%u)\n", in create_crash_mem()
23 kunit_err(test, "Failed to allocate crash_mem\n"); in create_crash_mem()
/linux/mm/kasan/
H A Dkasan_test_c.c1031 kunit_err(test, "Allocation failed: %s\n", __func__); in kmem_cache_oob()
1053 kunit_err(test, "Allocation failed: %s\n", __func__); in kmem_cache_double_free()
1075 kunit_err(test, "Allocation failed: %s\n", __func__); in kmem_cache_invalid_free()
1106 kunit_err(test, "Allocation failed: %s\n", __func__); in kmem_cache_rcu_uaf()
1157 kunit_err(test, "Allocation failed: %s\n", __func__); in kmem_cache_rcu_reuse()
1164 kunit_err(test, "Allocation failed: %s\n", __func__); in kmem_cache_rcu_reuse()
1226 kunit_err(test, "Allocation failed: %s\n", __func__); in kmem_cache_bulk()
/linux/drivers/iommu/
H A Dio-pgtable-arm-selftests.c67 kunit_err(test, "failed to allocate io pgtable ops\n"); in arm_lpae_run_tests()
/linux/include/kunit/
H A Dtest.h702 #define kunit_err(test, fmt, ...) \ macro