From 51c8b02336063fc6ddba2b57596a82da4c92ac2c Mon Sep 17 00:00:00 2001 From: Christopher Haster Date: Mon, 26 Jun 2017 23:44:51 -0500 Subject: [PATCH] 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. --- .travis.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 8a1fcd6a222..0936b29f44a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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