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:
authorChristopher Haster <chaster@utexas.edu>2018-05-28 17:17:44 +0300
committerChristopher Haster <chaster@utexas.edu>2018-10-14 01:58:56 +0300
commit483d41c545783d58a954912b1253e9cea7dbdaea (patch)
tree8ff4e712b6ae653f5f5e586783a61577c8b2ab37 /tests/test_dirs.sh
parent11a3c8d0623053a42957a135bf67708c3992d3e2 (diff)
Passing all of the basic functionality tests
Integration with the new journaling metadata has now progressed to the point where all of the basic functionality tests are passing. This includes: - test_format - test_dirs - test_files - test_seek - test_truncate - test_interspersed - test_paths Some of the fixes: - Modified move to correctly change entry ids - Called lfs_commit_move directly from compact, avoiding commit parsing logic during a compact - Opened up commit filters to be passed down from compact for moves - Added correct drop logic to lfs_dir_delete - Updated lfs_dir_seek to use ids instead of offsets - Caught id updates manually where possible (this needs to be fixed)
Diffstat (limited to 'tests/test_dirs.sh')
-rwxr-xr-xtests/test_dirs.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_dirs.sh b/tests/test_dirs.sh
index 26e8856..c9cc669 100755
--- a/tests/test_dirs.sh
+++ b/tests/test_dirs.sh
@@ -329,7 +329,7 @@ tests/test.py << TEST
TEST
echo "--- Multi-block remove ---"
-tests/test.py -s << TEST
+tests/test.py << TEST
lfs_mount(&lfs, &cfg) => 0;
lfs_remove(&lfs, "cactus") => LFS_ERR_NOTEMPTY;