Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/littlefs-project/littlefs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Pugh <bnp117@gmail.com>2023-08-18 08:10:53 +0300
committerBrian Pugh <bnp117@gmail.com>2023-08-18 08:10:53 +0300
commit5caa83fb776a4c725a45ca8c5f252045efb2feab (patch)
tree0e56bb2555f0da373f23ad950638d197f72ea9a6
parent7521e0a6b2017a18b498d9894174d2d2da57992e (diff)
forgot to unmount lfs in test; leaking memory
-rw-r--r--tests/test_superblocks.toml1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/test_superblocks.toml b/tests/test_superblocks.toml
index 2dcf880..f9826a8 100644
--- a/tests/test_superblocks.toml
+++ b/tests/test_superblocks.toml
@@ -48,6 +48,7 @@ code = '''
tweaked_cfg.block_count = 0;
lfs_mount(&lfs, &tweaked_cfg) => 0;
assert(lfs.block_count == cfg->block_count);
+ lfs_unmount(&lfs) => 0;
'''