diff --git a/.gitignore b/.gitignore index b39be27..a66be7a 100644 --- a/.gitignore +++ b/.gitignore @@ -52,3 +52,4 @@ src/test/*.bin src/test/objects/ src/test/results/ src/test/*.csv +*xtleak.kcg* diff --git a/src/test/Makefile b/src/test/Makefile index 64ba288..3dcda49 100644 --- a/src/test/Makefile +++ b/src/test/Makefile @@ -41,7 +41,7 @@ test: $(EXE) $(OUTPUT_FOLDER) test-debug: $(EXE) $(OUTPUT_FOLDER) rm -f $(OUTPUT_FOLDER)/* - valgrind --leak-check=full --leak-resolution=high --show-leak-kinds=all --xtree-leak=yes --show-mismatched-frees=yes --log-file=$(OUTPUT_FOLDER)/valgrind-analysis-results.txt ./$(EXE) + valgrind --leak-check=full --leak-resolution=high --show-leak-kinds=all --xtree-leak=yes --show-mismatched-frees=yes --error-limit=no --log-file=$(OUTPUT_FOLDER)/valgrind-analysis-results.txt ./$(EXE) $(OBJDIR): mkdir -p $@