General Purpose library for Freestanding C++ and POSIX systems
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
1.0 KiB

3 years ago
3 years ago
3 years ago
  1. CXX= clang++
  2. CXXFLAGS= --std=c++2a -O0 -g -pthread -DGP_TESTS -DFUZZ_STRENGTH=100000 -DNO_BENCH=0 -pedantic \
  3. -fprofile-instr-generate -fcoverage-mapping -Wno-unknown-attributes -fno-omit-frame-pointer \
  4. EVERY_USEFUL_FILE= $(shell find include/ -name "*.hpp" -type "f")
  5. EVERY_TEST_FILE= $(shell find tests/ -name "*.cpp" -type "f")
  6. # -fsanitize=address -fsanitize-blacklist=blacklist.txt
  7. all: tests
  8. tests: bin/tests
  9. LLVM_PROFILE_FILE="./bin/tests.profraw" ASAN_SYMBOLIZER_PATH=/usr/bin/llvm-symbolizer ./bin/tests
  10. @llvm-profdata merge -sparse ./bin/tests.profraw -o ./bin/tests.profdata
  11. @llvm-cov report ./bin/tests -instr-profile=./bin/tests.profdata $(EVERY_USEFUL_FILE)
  12. @llvm-cov report ./bin/tests -instr-profile=./bin/tests.profdata $(EVERY_USEFUL_FILE) | tail -n 1 | tr -s " " | sed -e 's/ /,/g' -- | awk -F "," '{print $$9}' | sed -e 's/^/Untested lines: /g'
  13. bin/tests: tests.cpp $(EVERY_TEST_FILE) $(EVERY_USEFUL_FILE) ./tests/test_scaffold.h
  14. @mkdir -p $(@D)
  15. $(CXX) $(CXXFLAGS) -Itests -Iinclude tests.cpp -o $@
  16. clean: ./bin
  17. @rm -rf $<