summaryrefslogtreecommitdiffstats
path: root/programs/Makefile
diff options
context:
space:
mode:
authorYann Collet <yann.collet.73@gmail.com>2014-10-27 23:39:06 (GMT)
committerYann Collet <yann.collet.73@gmail.com>2014-10-27 23:39:06 (GMT)
commit7a677a77a683a6716307034a176228075ce9fea5 (patch)
treed9359141f856f9612ac1cf201642313e8835d91e /programs/Makefile
parent508855c48826aa0544a907f02b52515aabba5e16 (diff)
downloadlz4-7a677a77a683a6716307034a176228075ce9fea5.zip
lz4-7a677a77a683a6716307034a176228075ce9fea5.tar.gz
lz4-7a677a77a683a6716307034a176228075ce9fea5.tar.bz2
LZ4 HC streaming integrated within lz4frame
Diffstat (limited to 'programs/Makefile')
-rw-r--r--[-rwxr-xr-x]programs/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/programs/Makefile b/programs/Makefile
index e7e57a1..e313fc5 100755..100644
--- a/programs/Makefile
+++ b/programs/Makefile
@@ -174,13 +174,13 @@ test-frame: frametest
test-mem: lz4 datagen frametest
./datagen -g16KB > tmp
- valgrind ./lz4 -9 -BD -f tmp /dev/null
+ valgrind --leak-check=yes ./lz4 -9 -BD -f tmp /dev/null
./datagen -g16MB > tmp
- valgrind ./lz4 -9 -B5D -f tmp /dev/null
+ valgrind --leak-check=yes ./lz4 -9 -B5D -f tmp /dev/null
./datagen -g256MB > tmp
- valgrind ./lz4 -B4D -f tmp /dev/null
+ valgrind --leak-check=yes ./lz4 -B4D -f tmp /dev/null
rm tmp
- valgrind ./frametest -i100
+ valgrind --leak-check=yes ./frametest -i100
test-mem32: lz4c32 datagen
# unfortunately, valgrind doesn't seem to work with non-native binary. If someone knows how to do a valgrind-test on a 32-bits exe with a 64-bits system...