diff options
author | Nick Terrell <terrelln@fb.com> | 2016-11-04 01:19:14 (GMT) |
---|---|---|
committer | Nick Terrell <terrelln@fb.com> | 2016-11-04 01:19:14 (GMT) |
commit | 04d728b87b6ba1b32ebc246455ad4a395a73c3d5 (patch) | |
tree | 53c3ac89710dc8f03287e3ff0447543ad04d16a9 /tests/Makefile | |
parent | 3dcafd35d409380182393fdb0d5666f6a64ff841 (diff) | |
download | lz4-04d728b87b6ba1b32ebc246455ad4a395a73c3d5.zip lz4-04d728b87b6ba1b32ebc246455ad4a395a73c3d5.tar.gz lz4-04d728b87b6ba1b32ebc246455ad4a395a73c3d5.tar.bz2 |
Fix tests for test mode
Diffstat (limited to 'tests/Makefile')
-rw-r--r-- | tests/Makefile | 5 |
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 ----" |