diff options
author | Thiago Marcos P. Santos <thiago@mapbox.com> | 2016-06-08 14:57:46 +0300 |
---|---|---|
committer | Thiago Marcos P. Santos <thiago@mapbox.com> | 2016-06-09 19:56:35 +0300 |
commit | 8bbb7216367890b9a8d0e5bc7899d180e3af1e87 (patch) | |
tree | d887e2658b0769918cb641c734189a6402102170 /Makefile | |
parent | fd8753748267de7c7a729c53e714ba6f55fa06b4 (diff) | |
download | qtlocation-mapboxgl-8bbb7216367890b9a8d0e5bc7899d180e3af1e87.tar.gz |
[Qt][build] Updated valgrind supression and make it a target for Qt
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -239,6 +239,13 @@ run-qt-app: qt-app run-qt-qml-app: qt-qml-app cd $(QT_OUTPUT_PATH)/$(BUILDTYPE) && ./qquickmapboxgl +test-valgrind-qt: $(QT_MAKEFILE) node_modules + $(QT_ENV) $(MAKE) -j$(JOBS) -C $(QT_OUTPUT_PATH) test + ./scripts/valgrind.sh $(QT_OUTPUT_PATH)/$(BUILDTYPE)/test --gtest_catch_exceptions=0 --gtest_filter=-*.Load + +run-valgrind-qt-app: qt-app + ./scripts/valgrind.sh $(QT_OUTPUT_PATH)/$(BUILDTYPE)/qmapboxgl --test -platform offscreen + #### Linux targets ##################################################### LINUX_OUTPUT_PATH = build/linux-$(shell uname -m) @@ -270,9 +277,6 @@ test: $(LINUX_MAKEFILE) run-glfw-app: glfw-app cd $(LINUX_OUTPUT_PATH)/$(BUILDTYPE) && ./mapbox-glfw -run-valgrind-glfw-app: glfw-app - cd $(LINUX_OUTPUT_PATH)/$(BUILDTYPE) && valgrind --leak-check=full --suppressions=../../../scripts/valgrind.sup ./mapbox-glfw - ifneq (,$(shell which gdb)) GDB = gdb -batch -return-child-result -ex 'set print thread-events off' -ex 'run' -ex 'thread apply all bt' --args endif |