mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 07:47:17 +00:00
tests: parallelise 'make valgrind'
Use $(MAKE) instead of 'make' inside the Makefile, otherwise the make will run as if -j1 had been specified and complain about the job server not being available, and with $(MAKE) in inherits the parent make's settings it seems. Upgrade common submodule for parallel check-valgrind.
This commit is contained in:
parent
7b211bf6b3
commit
2f60c9c4fe
2 changed files with 4 additions and 4 deletions
|
@ -44,13 +44,13 @@ include $(top_srcdir)/common/release.mak
|
||||||
include $(top_srcdir)/common/po.mak
|
include $(top_srcdir)/common/po.mak
|
||||||
|
|
||||||
check-valgrind:
|
check-valgrind:
|
||||||
cd tests/check && make check-valgrind
|
$(MAKE) -C tests/check check-valgrind
|
||||||
|
|
||||||
if HAVE_GST_CHECK
|
if HAVE_GST_CHECK
|
||||||
check-torture:
|
check-torture:
|
||||||
cd tests/check && make torture
|
$(MAKE) -C tests/check torture
|
||||||
build-checks:
|
build-checks:
|
||||||
cd tests/check && make build-checks
|
$(MAKE) -C tests/check build-checks
|
||||||
else
|
else
|
||||||
check-torture:
|
check-torture:
|
||||||
true
|
true
|
||||||
|
|
2
common
2
common
|
@ -1 +1 @@
|
||||||
Subproject commit 36388a18d37d72f9633bf1a8c06d18d310d215bb
|
Subproject commit 6e754981c5e37a79e35dce01ce0130d5f1eff212
|
Loading…
Reference in a new issue