summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorYann Collet <cyan@fb.com>2016-11-10 00:37:16 (GMT)
committerYann Collet <cyan@fb.com>2016-11-10 00:37:16 (GMT)
commitfe48cef50ed6d3585dcd81eae2ae0998172e8cd7 (patch)
tree052ef18bbabff27fbca0911231c54d5d5f5f4b6e /tests
parent1b1680594182b2b8c562b9f89797aeb206615df4 (diff)
downloadlz4-fe48cef50ed6d3585dcd81eae2ae0998172e8cd7.zip
lz4-fe48cef50ed6d3585dcd81eae2ae0998172e8cd7.tar.gz
lz4-fe48cef50ed6d3585dcd81eae2ae0998172e8cd7.tar.bz2
fixed multiples files on lz4cat (#184, by @libor-m)
Diffstat (limited to 'tests')
-rw-r--r--tests/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/Makefile b/tests/Makefile
index 56c299b..16771da 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -225,8 +225,8 @@ test-lz4-basic: lz4 datagen
test-lz4-hugefile: lz4 datagen
@echo "\n ---- test huge files compression/decompression ----"
- ./datagen -g6GB | $(PRGDIR)/lz4 -vqB5D | $(PRGDIR)/lz4 -qt
- ./datagen -g6GB | $(PRGDIR)/lz4 -vq5BD | $(PRGDIR)/lz4 -qt
+ ./datagen -g6GB | $(PRGDIR)/lz4 -vB5D | $(PRGDIR)/lz4 -qt
+ ./datagen -g6GB | $(PRGDIR)/lz4 -v5BD | $(PRGDIR)/lz4 -qt
@$(RM) tmp*
test-lz4-testmode: lz4 datagen
@@ -240,8 +240,8 @@ test-lz4-testmode: lz4 datagen
./datagen | $(PRGDIR)/lz4 -df > $(VOID)
@echo "Hello World !" > tmp1
$(PRGDIR)/lz4 -dcf tmp1
-# @echo "from underground..." > tmp2
-# $(PRGDIR)/lz4 -dcfm tmp1 tmp2
+ @echo "from underground..." > tmp2
+ $(PRGDIR)/lz4 -dcfm tmp1 tmp2
@echo "\n ---- test cli ----"
$(PRGDIR)/lz4 file-does-not-exist && false || true
$(PRGDIR)/lz4 -f file-does-not-exist && false || true