diff options
author | Yann Collet <yann.collet.73@gmail.com> | 2014-10-27 23:39:06 (GMT) |
---|---|---|
committer | Yann Collet <yann.collet.73@gmail.com> | 2014-10-27 23:39:06 (GMT) |
commit | 7a677a77a683a6716307034a176228075ce9fea5 (patch) | |
tree | d9359141f856f9612ac1cf201642313e8835d91e /programs/Makefile | |
parent | 508855c48826aa0544a907f02b52515aabba5e16 (diff) | |
download | lz4-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/Makefile | 8 |
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... |