Lines Matching defs:log
20 * Append formatted message to log, size of which is limited to
23 void kunit_log_append(char *log, const char *fmt, ...)
29 if (!log)
32 len_left = KUNIT_LOG_SIZE - strlen(log) - 1;
40 strncat(log, line, len_left);
74 * We do not log the test suite results as doing so would
212 void kunit_init_test(struct kunit *test, const char *name, char *log)
217 test->log = log;
218 if (test->log)
219 test->log[0] = '\0';
334 kunit_init_test(&test, test_case->name, test_case->log);