mirror of
https://github.com/eledio-devices/thirdparty-littlefs.git
synced 2025-11-01 00:38:29 +01:00
47 lines
1.2 KiB
Bash
Executable File
47 lines
1.2 KiB
Bash
Executable File
#!/bin/bash
|
|
set -eu
|
|
export TEST_FILE=$0
|
|
trap 'export TEST_LINE=$LINENO' DEBUG
|
|
|
|
echo "=== Orphan tests ==="
|
|
rm -rf blocks
|
|
scripts/test.py << TEST
|
|
lfs2_format(&lfs2, &cfg) => 0;
|
|
TEST
|
|
|
|
echo "--- Orphan test ---"
|
|
scripts/test.py << TEST
|
|
lfs2_mount(&lfs2, &cfg) => 0;
|
|
lfs2_mkdir(&lfs2, "parent") => 0;
|
|
lfs2_mkdir(&lfs2, "parent/orphan") => 0;
|
|
lfs2_mkdir(&lfs2, "parent/child") => 0;
|
|
lfs2_remove(&lfs2, "parent/orphan") => 0;
|
|
TEST
|
|
# corrupt most recent commit, this should be the update to the previous
|
|
# linked-list entry and should orphan the child
|
|
scripts/corrupt.py
|
|
scripts/test.py << TEST
|
|
lfs2_mount(&lfs2, &cfg) => 0;
|
|
|
|
lfs2_stat(&lfs2, "parent/orphan", &info) => LFS2_ERR_NOENT;
|
|
lfs2_ssize_t before = lfs2_fs_size(&lfs2);
|
|
before => 8;
|
|
|
|
lfs2_unmount(&lfs2) => 0;
|
|
lfs2_mount(&lfs2, &cfg) => 0;
|
|
|
|
lfs2_stat(&lfs2, "parent/orphan", &info) => LFS2_ERR_NOENT;
|
|
lfs2_ssize_t orphaned = lfs2_fs_size(&lfs2);
|
|
orphaned => 8;
|
|
|
|
lfs2_mkdir(&lfs2, "parent/otherchild") => 0;
|
|
|
|
lfs2_stat(&lfs2, "parent/orphan", &info) => LFS2_ERR_NOENT;
|
|
lfs2_ssize_t deorphaned = lfs2_fs_size(&lfs2);
|
|
deorphaned => 8;
|
|
|
|
lfs2_unmount(&lfs2) => 0;
|
|
TEST
|
|
|
|
scripts/results.py
|