aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2023-07-02 16:07:38 +0200
committerMattias Andrée <maandree@kth.se>2023-07-02 16:07:38 +0200
commit91e58ef0de20a60769fb2fd2ac3d0ae8069c3676 (patch)
tree31e2fcacd5dd17995653547dbaaf4caa33f055cb
parentRemove -s from LDFLAGS and -std=c99 from CFLAGS and specify CC=c99 (diff)
downloadlibkeccak-91e58ef0de20a60769fb2fd2ac3d0ae8069c3676.tar.gz
libkeccak-91e58ef0de20a60769fb2fd2ac3d0ae8069c3676.tar.bz2
libkeccak-91e58ef0de20a60769fb2fd2ac3d0ae8069c3676.tar.xz
Remove use of valgrind in make check
Signed-off-by: Mattias Andrée <maandree@kth.se>
-rw-r--r--Makefile5
1 files changed, 1 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 0bb5353..81430c3 100644
--- a/Makefile
+++ b/Makefile
@@ -168,10 +168,7 @@ check: test
@test $$(sha256sum .testfile | cut -d ' ' -f 1) = \
e21d814d21ca269246849cc105faec1a71ac7d1cdb1a86023254f49d51b47231 || \
( echo 'The file .testfile is incorrect, test will fail!' ; false )
- valgrind --leak-check=full ./test
- test $$(valgrind ./test 2>&1 >/dev/null | wc -l) = 14
-# Using valgrind 3.10.0, its output to standard error should consist of 14 lines,
-# the test itself never prints to standard error.
+ $(CHECK_PREFIX) ./test
benchfile:
dd if=/dev/urandom bs=1000 count=50 > $@