summaryrefslogtreecommitdiffstats
path: root/programs/Makefile
diff options
context:
space:
mode:
authorYann Collet <yann.collet.73@gmail.com>2015-03-13 19:36:59 (GMT)
committerYann Collet <yann.collet.73@gmail.com>2015-03-13 19:36:59 (GMT)
commitd11ac4087254db4b9391039ce862e7305874fe97 (patch)
tree8f7c5cf21ce6a2cc97cb565a89a1b56aad8f211e /programs/Makefile
parent45a357fd1704e9c6d2d8037277bda62e8c86308e (diff)
downloadlz4-d11ac4087254db4b9391039ce862e7305874fe97.zip
lz4-d11ac4087254db4b9391039ce862e7305874fe97.tar.gz
lz4-d11ac4087254db4b9391039ce862e7305874fe97.tar.bz2
Improved sparse files support
Diffstat (limited to 'programs/Makefile')
-rw-r--r--programs/Makefile14
1 files changed, 10 insertions, 4 deletions
diff --git a/programs/Makefile b/programs/Makefile
index f6fbd68..3d38244 100644
--- a/programs/Makefile
+++ b/programs/Makefile
@@ -165,10 +165,16 @@ test-lz4: lz4 datagen
ls -l file*
@rm file1 file2 file3 file1.lz4 file2.lz4 file3.lz4
@echo ---- test sparse file support ----
- ./datagen -g50M -P100 | ./lz4 -B4D | ./lz4 -dvX > tmp
- ./datagen -g50M -P100 | diff -s - tmp
- ls -ls tmp
- @rm tmp
+ ./datagen -g50M -P100 | ./lz4 -B4D | ./lz4 -dvX > tmpB4
+ ./datagen -g50M -P100 | ./lz4 -B5D | ./lz4 -dvX > tmpB5
+ ./datagen -g50M -P100 | ./lz4 -B6D | ./lz4 -dvX > tmpB6
+ ./datagen -g50M -P100 | ./lz4 -B7D | ./lz4 -dvX > tmpB7
+ ls -ls tmp*
+ ./datagen -g50M -P100 | diff -s - tmpB4
+ ./datagen -g50M -P100 | diff -s - tmpB5
+ ./datagen -g50M -P100 | diff -s - tmpB6
+ ./datagen -g50M -P100 | diff -s - tmpB7
+ @rm tmp*
test-lz4c: lz4c datagen