summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorYann Collet <yann.collet.73@gmail.com>2019-04-22 00:01:03 (GMT)
committerYann Collet <yann.collet.73@gmail.com>2019-04-22 00:01:03 (GMT)
commit22fae16c6f4c4f118e93468ede884295d365fcef (patch)
tree417e2dfd0cb38d28afb07ceb8320ba484f412e2f /tests
parent467e352de929fa664af03ece065c89e9997d1bf1 (diff)
downloadlz4-22fae16c6f4c4f118e93468ede884295d365fcef.zip
lz4-22fae16c6f4c4f118e93468ede884295d365fcef.tar.gz
lz4-22fae16c6f4c4f118e93468ede884295d365fcef.tar.bz2
ensure tests work when `stdout` is not the console
ensure this case is continuously tested on travis. Update documentation on implicit output, invite to not rely on implicit output in scripts.
Diffstat (limited to 'tests')
-rw-r--r--tests/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Makefile b/tests/Makefile
index 209a530..ddc6d1e 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -317,7 +317,7 @@ test-lz4-basic: lz4 datagen unlz4 lz4cat
! $(LZ4) -c --fast=-1 tmp-tlb-dg20K # lz4 should fail when fast=-1
# Test for #596
@echo "TEST" > tmp-tlb-test
- $(LZ4) tmp-tlb-test
+ $(LZ4) -m tmp-tlb-test
$(LZ4) tmp-tlb-test.lz4 tmp-tlb-test2
$(DIFF) -q tmp-tlb-test tmp-tlb-test2
@$(RM) tmp-tlb*