Skip to content

Commit 6e99fa9

Browse files
committed
Squashed 'littlefs/' changes from c2283a2..9843402
9843402 Fixed incorrect return value from lfs_file_seek 273cb7c Fixed problem with lookaheads larger than block device d9367e0 Fixed collection of multiblock directories a83b2fe Added checks for out-of-bound seeks a8fa5e6 Fixed some corner cases with paths 26dd49a Fixed issue with negative modulo with unaligned lookaheads 0982020 Fixed issue with cold-write after seek to block boundary git-subtree-dir: littlefs git-subtree-split: 9843402
1 parent 76d00eb commit 6e99fa9

File tree

6 files changed

+248
-63
lines changed

6 files changed

+248
-63
lines changed

.travis.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ script:
99
-include stdio.h -Werror' make all size
1010

1111
# run tests
12-
- CFLAGS="-DLFS_READ_SIZE=16 -DLFS_PROG_SIZE=16" make test
12+
- make test
13+
14+
# run tests with a few different configurations
1315
- CFLAGS="-DLFS_READ_SIZE=1 -DLFS_PROG_SIZE=1" make test
1416
- CFLAGS="-DLFS_READ_SIZE=512 -DLFS_PROG_SIZE=512" make test
17+
- CFLAGS="-DLFS_BLOCK_COUNT=1023" make test
18+
- CFLAGS="-DLFS_LOOKAHEAD=2047" make test

0 commit comments

Comments
 (0)