Skip to content

Commit

Permalink
Updated .travis.yml to test multiple cache sizes
Browse files Browse the repository at this point in the history
cache = 1 byte and cache = 1 block are imporant corner cases, with
cache = 16 bytes also thrown in as a more common case.
  • Loading branch information
geky committed Jun 29, 2017
1 parent 8a9b9ba commit 51c8b02
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
script:
- make test
- CFLAGS="-DLFS_READ_SIZE=16 -DLFS_PROG_SIZE=16" make test
- CFLAGS="-DLFS_READ_SIZE=1 -DLFS_PROG_SIZE=1" make test
- CFLAGS="-DLFS_READ_SIZE=512 -DLFS_PROG_SIZE=512" make test

0 comments on commit 51c8b02

Please sign in to comment.