about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorRory Bradford <roryrjb@gmail.com>2020-02-04 07:56:29 +0000
committerRory Bradford <roryrjb@gmail.com>2020-02-04 07:56:29 +0000
commitdab6e9c0fa610f74ab57076060e1fd91884283f5 (patch)
treefbecb6f0dc2aa03a943ad61e71442af6b4d67186
parent0aaa3fc4eb7b186b7413c6efe24120e965e132e7 (diff)
downloadrf-dab6e9c0fa610f74ab57076060e1fd91884283f5.tar.gz
Fix valgrind test on OpenBSD
Remove non-portable valgrind -s option.

Signed-off-by: Rory Bradford <roryrjb@gmail.com>
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index cb78c69..208c034 100644
--- a/Makefile
+++ b/Makefile
@@ -29,9 +29,9 @@ debug: $(OBJS)
 	$(CC) $(BIN).c $(CFLAGS) -g -o $(BIN)
 
 test: clean debug
-	valgrind -s --leak-check=full --show-leak-kinds=all --track-origins=yes --error-exitcode=1 ./$(BIN) ^$
-	valgrind -s --leak-check=full --show-leak-kinds=all --track-origins=yes --error-exitcode=1 ./$(BIN) ^$$
-	valgrind -s --leak-check=full --show-leak-kinds=all --track-origins=yes --error-exitcode=1 ./$(BIN) rf
+	valgrind --leak-check=full --show-leak-kinds=all --track-origins=yes --error-exitcode=1 ./$(BIN) ^$
+	valgrind --leak-check=full --show-leak-kinds=all --track-origins=yes --error-exitcode=1 ./$(BIN) ^$$
+	valgrind --leak-check=full --show-leak-kinds=all --track-origins=yes --error-exitcode=1 ./$(BIN) rf
 
 static: $(OBJS)
 	$(CC) $(BIN).c $(CFLAGS) -static -o $(BIN)