Adding target "test-debug" for valgrind test

pull/495/head
Vincent 2 years ago
parent 36546af851
commit 6ed0f41b0c
  1. 1
      .gitignore
  2. 2
      src/test/Makefile

1
.gitignore vendored

@ -52,3 +52,4 @@ src/test/*.bin
src/test/objects/
src/test/results/
src/test/*.csv
*xtleak.kcg*

@ -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 $@

Loading…
Cancel
Save