Searched refs:bad_ctx (Results 1 – 1 of 1) sorted by relevance
/Zephyr-latest/tests/subsys/storage/stream/stream_flash/src/ |
D | main.c | 345 struct stream_flash_ctx bad_ctx = ctx; in ZTEST() local 354 bad_ctx.fdev = &fake_dev; in ZTEST() 356 cmp_ctx = bad_ctx; in ZTEST() 358 rc = stream_flash_buffered_write(&bad_ctx, write_buf, 0, true); in ZTEST() 366 bad_ctx.callback = NULL; in ZTEST() 367 bad_ctx.buf_bytes = 0; in ZTEST() 368 cmp_ctx = bad_ctx; in ZTEST() 372 rc = stream_flash_buffered_write(&bad_ctx, write_buf, tow, true); in ZTEST() 374 zassert_equal(cmp_ctx.bytes_written, bad_ctx.bytes_written, in ZTEST() 379 zassert_equal(bad_ctx.buf_bytes, cmp_ctx.buf_bytes + tow, in ZTEST() [all …]
|