diff options
author | Roland Reichwein <mail@reichwein.it> | 2023-01-02 19:59:41 +0100 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2023-01-02 19:59:41 +0100 |
commit | 992a1b3d2653ed527c2a301f80140bc35d84e832 (patch) | |
tree | 73981b8a28a0368f2b74b0369b1ecf649c908f77 /tests/Makefile | |
parent | 20ceb53ec1c1bc18face8e831292dfe81fed3817 (diff) |
Switch from ImageMagick to GraphicsMagick for deterministic data; added tests
Diffstat (limited to 'tests/Makefile')
-rw-r--r-- | tests/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/Makefile b/tests/Makefile index 057eae9..dd357b3 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -14,7 +14,10 @@ endif UNITS=storage.cpp config.cpp compiledsql.cpp qrcode.cpp whiteboard.cpp UNITTESTS=test-config.cpp \ - test-storage.cpp + test-storage.cpp \ + test-compiledsql.cpp \ + test-qrcode.cpp \ + test-whiteboard.cpp CXXFLAGS+=\ -I/usr/src/googletest/googletest/include \ @@ -28,7 +31,7 @@ test: unittests ifeq ($(CXXTYPE),clang++) LLVM_PROFILE_FILE="unittests.profraw" ./unittests $(LLVMPROFDATA) merge -sparse unittests.profraw -o unittests.profdata - $(LLVMCOV) report --ignore-filename-regex='google' --ignore-filename-regex='test-' --show-region-summary=0 -instr-profile unittests.profdata unittests + $(LLVMCOV) report --ignore-filename-regex='google' --ignore-filename-regex='test-' --ignore-filename-regex='Magick' --show-region-summary=0 -instr-profile unittests.profdata unittests else ./unittests #gcov-12 storage.o |