forgot to unmount lfs in test; leaking memory

This commit is contained in:
Brian Pugh 2023-08-17 22:10:53 -07:00
parent 7521e0a6b2
commit 5caa83fb77
1 changed files with 1 additions and 0 deletions

View File

@ -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;
'''