mirror of
https://github.com/eledio-devices/thirdparty-littlefs.git
synced 2025-11-01 00:38:29 +01:00
Compare commits
1 Commits
v2.2.1
...
fix-assert
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
87a2cb0e41 |
@@ -207,7 +207,7 @@ int lfs_testbd_prog(const struct lfs_config *cfg, lfs_block_t block,
|
|||||||
bd->power_cycles -= 1;
|
bd->power_cycles -= 1;
|
||||||
if (bd->power_cycles == 0) {
|
if (bd->power_cycles == 0) {
|
||||||
// sync to make sure we persist the last changes
|
// sync to make sure we persist the last changes
|
||||||
assert(lfs_testbd_rawsync(cfg) == 0);
|
LFS_ASSERT(lfs_testbd_rawsync(cfg) == 0);
|
||||||
// simulate power loss
|
// simulate power loss
|
||||||
exit(33);
|
exit(33);
|
||||||
}
|
}
|
||||||
@@ -254,7 +254,7 @@ int lfs_testbd_erase(const struct lfs_config *cfg, lfs_block_t block) {
|
|||||||
bd->power_cycles -= 1;
|
bd->power_cycles -= 1;
|
||||||
if (bd->power_cycles == 0) {
|
if (bd->power_cycles == 0) {
|
||||||
// sync to make sure we persist the last changes
|
// sync to make sure we persist the last changes
|
||||||
assert(lfs_testbd_rawsync(cfg) == 0);
|
LFS_ASSERT(lfs_testbd_rawsync(cfg) == 0);
|
||||||
// simulate power loss
|
// simulate power loss
|
||||||
exit(33);
|
exit(33);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user