mirror of
https://gitlab.gnome.org/GNOME/libsecret.git
synced 2024-12-22 04:38:55 +00:00
b72048c920
Allow parallel building and testing by using a single Makefile.am Implement parallel testing using TAP, with various drivers and compilers living in the build/ directory. Fix all sorts of issues that this caused, including builddir != srcdir, leaks in tests and so on. It would have been nice to break out all the above into separate commits ... blush.
24 lines
408 B
Makefile
24 lines
408 B
Makefile
SUPPRESSIONS = \
|
|
build/gcrypt.supp \
|
|
build/glib.supp \
|
|
build/pthread.supp \
|
|
build/unknown.supp \
|
|
$(NULL)
|
|
|
|
valgrind-suppressions: $(SUPPRESSIONS)
|
|
$(AM_V_GEN) cat $^ > $@
|
|
|
|
EXTRA_DIST += \
|
|
build/valgrind \
|
|
build/tap-compiler \
|
|
build/tap-driver \
|
|
build/tap-unittest \
|
|
build/test-driver \
|
|
$(SUPPRESSIONS)
|
|
|
|
CLEANFILES += \
|
|
valgrind-suppressions \
|
|
$(NULL)
|
|
|
|
nodist_noinst_DATA += valgrind-suppressions
|