summaryrefslogtreecommitdiffstats
path: root/programs/Makefile
diff options
context:
space:
mode:
authorYann Collet <yann.collet.73@gmail.com>2015-05-18 21:09:37 (GMT)
committerYann Collet <yann.collet.73@gmail.com>2015-05-18 21:09:37 (GMT)
commit58b5aadb1fc5d937e81c8f33e0e8290f2097c6bb (patch)
treece1667def09032453911771f3590e4fe258687fa /programs/Makefile
parent60d657ac86ce2db86a5392d26452e9c63230f0a3 (diff)
downloadlz4-58b5aadb1fc5d937e81c8f33e0e8290f2097c6bb.zip
lz4-58b5aadb1fc5d937e81c8f33e0e8290f2097c6bb.tar.gz
lz4-58b5aadb1fc5d937e81c8f33e0e8290f2097c6bb.tar.bz2
Fixed sparse issue with non seekable streams (#105)
Diffstat (limited to 'programs/Makefile')
-rw-r--r--programs/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/programs/Makefile b/programs/Makefile
index 23cbc3d..7e04811 100644
--- a/programs/Makefile
+++ b/programs/Makefile
@@ -150,7 +150,7 @@ test-all: test test32
test-travis: $(TRAVIS_TARGET)
test-lz4-sparse: lz4 datagen
- @echo ---- test sparse file support ----
+ @echo "\n ---- test sparse file support ----"
./datagen -g5M -P100 > tmpSrc
./lz4 -B4D tmpSrc | ./lz4 -dv --sparse > tmpB4
diff -s tmpSrc tmpB4
@@ -167,6 +167,9 @@ test-lz4-sparse: lz4 datagen
./datagen -s1 -g1200007 -P100 | diff -s - tmpOdd
ls -ls tmpOdd
@rm tmp*
+ @echo "\n Compatibility with Console :"
+ ./lz4 COPYING | ./lz4 -d -c
+ ./lz4 COPYING | ./lz4 -d | cat
test-lz4-contentSize: lz4 datagen
@echo ---- test original size support ----