diff options
author | Rory Bradford <roryrjb@gmail.com> | 2020-02-04 07:56:29 +0000 |
---|---|---|
committer | Rory Bradford <roryrjb@gmail.com> | 2020-02-04 07:56:29 +0000 |
commit | dab6e9c0fa610f74ab57076060e1fd91884283f5 (patch) | |
tree | fbecb6f0dc2aa03a943ad61e71442af6b4d67186 /Makefile | |
parent | 0aaa3fc4eb7b186b7413c6efe24120e965e132e7 (diff) | |
download | rf-dab6e9c0fa610f74ab57076060e1fd91884283f5.tar.gz |
Fix valgrind test on OpenBSD
Remove non-portable valgrind -s option. Signed-off-by: Rory Bradford <roryrjb@gmail.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
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) |