summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorYann Collet <Cyan4973@users.noreply.github.com>2016-11-04 04:08:06 (GMT)
committerGitHub <noreply@github.com>2016-11-04 04:08:06 (GMT)
commit6d6a3e0fb582be4979404a5e8e368df8b891d686 (patch)
tree75c1e64bf9d21575ef0a65ffc81d2306ecc1689d /tests
parent4c6610709e455f046bd0156828865ea7405580ea (diff)
parent136caa552bdc5657449e540b8becff826b80ade7 (diff)
downloadlz4-6d6a3e0fb582be4979404a5e8e368df8b891d686.zip
lz4-6d6a3e0fb582be4979404a5e8e368df8b891d686.tar.gz
lz4-6d6a3e0fb582be4979404a5e8e368df8b891d686.tar.bz2
Merge pull request #250 from terrelln/test-mode
Fix test mode and write to null
Diffstat (limited to 'tests')
-rw-r--r--tests/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/Makefile b/tests/Makefile
index d7a195a..0c44b21 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -217,7 +217,10 @@ test-lz4-basic: lz4 datagen
test-lz4: lz4 datagen test-lz4-basic test-lz4-multiple test-lz4-sparse test-lz4-contentSize test-lz4-frame-concatenation
@echo "\n ---- test pass-through ----"
- ./datagen | $(PRGDIR)/lz4 -tf
+ ./datagen | $(PRGDIR)/lz4 -t && false || true
+ ./datagen | $(PRGDIR)/lz4 -tf && false || true
+ ./datagen | $(PRGDIR)/lz4 -d > $(VOID) && false || true
+ ./datagen | $(PRGDIR)/lz4 -df > $(VOID)
test-lz4c: lz4c datagen
@echo "\n ---- test lz4c version ----"