Home
last modified time | relevance | path

Searched refs:KUNIT_LOG_SIZE (Results 1 – 4 of 4) sorted by relevance

/linux-6.1.9/lib/kunit/
Ddebugfs.c97 suite->log = kzalloc(KUNIT_LOG_SIZE, GFP_KERNEL); in kunit_debugfs_create_suite()
99 test_case->log = kzalloc(KUNIT_LOG_SIZE, GFP_KERNEL); in kunit_debugfs_create_suite()
Dtest.c119 char line[KUNIT_LOG_SIZE]; in kunit_log_append()
126 len_left = KUNIT_LOG_SIZE - strlen(log) - 1; in kunit_log_append()
Dkunit-test.c462 suite.log = kunit_kzalloc(test, KUNIT_LOG_SIZE, GFP_KERNEL); in kunit_log_test()
/linux-6.1.9/include/kunit/
Dtest.h33 #define KUNIT_LOG_SIZE 512 macro