Searched refs:to_log (Results 1 – 1 of 1) sorted by relevance
/Zephyr-latest/tests/subsys/logging/log_backend_fs/src/ |
D | log_fs_test.c | 39 uint8_t to_log[] = "Log to left behind"; in ZTEST() 42 rc = write_log_to_file(to_log, sizeof(to_log), NULL); in ZTEST() 43 zassert_equal(rc, sizeof(to_log), "Unexpected rteval."); in ZTEST() 94 uint8_t to_log[] = "Correct Log 1"; in ZTEST() local 99 rc = write_log_to_file(to_log, sizeof(to_log), NULL); in ZTEST() 109 rc = strncmp(log_read, to_log, sizeof(log_read)); in ZTEST() 114 to_log[sizeof(to_log)-2] = '2'; in ZTEST() 115 rc = write_log_to_file(to_log, sizeof(to_log), NULL); in ZTEST() 120 zassert_equal(fs_seek(&file, sizeof(to_log), FS_SEEK_SET), 0, in ZTEST() 126 rc = strncmp(log_read, to_log, sizeof(log_read)); in ZTEST() [all …]
|