Home
last modified time | relevance | path

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

/Zephyr-latest/tests/subsys/fs/common/
Dtest_fs_basic.c50 zassert_equal(testfs_write_incrementing(&file, 0, TESTFS_BUFFER_SIZE), in create_write_hello()
51 TESTFS_BUFFER_SIZE, in create_write_hello()
81 zassert_equal(stat.size, TESTFS_BUFFER_SIZE, in create_write_hello()
106 zassert_equal(testfs_verify_incrementing(&file, 0, TESTFS_BUFFER_SIZE), in verify_hello()
107 TESTFS_BUFFER_SIZE, in verify_hello()
110 zassert_equal(fs_tell(&file), TESTFS_BUFFER_SIZE, in verify_hello()
143 zassert_equal(stat.size, TESTFS_BUFFER_SIZE, in seek_within_hello()
155 zassert_equal(testfs_verify_incrementing(&file, pos, TESTFS_BUFFER_SIZE), in seek_within_hello()
156 TESTFS_BUFFER_SIZE - pos, in seek_within_hello()
177 TESTFS_BUFFER_SIZE), in seek_within_hello()
[all …]
Dtest_fs_util.c91 uint8_t buffer[TESTFS_BUFFER_SIZE]; in testfs_write_constant()
119 uint8_t buffer[TESTFS_BUFFER_SIZE]; in testfs_verify_constant()
159 uint8_t buffer[TESTFS_BUFFER_SIZE]; in testfs_write_incrementing()
189 uint8_t buffer[TESTFS_BUFFER_SIZE]; in testfs_verify_incrementing()
Dtest_fs_util.h45 #define TESTFS_BUFFER_SIZE 64 macro
/Zephyr-latest/tests/subsys/fs/littlefs/src/
Dtest_lfs_basic.c160 rc = testfs_write_incrementing(file, 0, TESTFS_BUFFER_SIZE); in num_files()
161 zassert_equal(rc, TESTFS_BUFFER_SIZE, "write %s failed: %d", pstr, rc); in num_files()