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-01-21 02:30:40 +0300
committerChristopher Haster <chaster@utexas.edu>2018-01-21 04:22:44 +0300
commitd88f0ac02ff93b549418d38d464b5591fce4f688 (patch)
treea10fb4ed3bbcaed8d24180a04532c20c15a24fc7 /Makefile
parent2ad435ed6309096979d6f90aa762632d23202a42 (diff)
Added lfs_file_truncate
As a copy-on-write filesystem, the truncate function is a very nice function to have, as it can take advantage of reusing the data already written out to disk.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index cf978e7..bf047f1 100644
--- a/Makefile
+++ b/Makefile
@@ -33,7 +33,7 @@ size: $(OBJ)
$(SIZE) -t $^
.SUFFIXES:
-test: test_format test_dirs test_files test_seek test_parallel \
+test: test_format test_dirs test_files test_seek test_truncate test_parallel \
test_alloc test_paths test_orphan test_move test_corrupt
test_%: tests/test_%.sh
ifdef QUIET