Skip to content

Commit 51c8b02

Browse files
committed
Updated .travis.yml to test multiple cache sizes
cache = 1 byte and cache = 1 block are imporant corner cases, with cache = 16 bytes also thrown in as a more common case.
1 parent 8a9b9ba commit 51c8b02

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.travis.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
script:
2-
- make test
2+
- CFLAGS="-DLFS_READ_SIZE=16 -DLFS_PROG_SIZE=16" make test
3+
- CFLAGS="-DLFS_READ_SIZE=1 -DLFS_PROG_SIZE=1" make test
4+
- CFLAGS="-DLFS_READ_SIZE=512 -DLFS_PROG_SIZE=512" make test

0 commit comments

Comments
 (0)