mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
validate:launcher: Error out in the check testsuite if rebuilding failed
This commit is contained in:
parent
2d8ef6e81c
commit
e8162cc957
1 changed files with 3 additions and 1 deletions
|
@ -289,7 +289,9 @@ class GstCheckTestsManager(MesonTestsManager):
|
||||||
if self.tests:
|
if self.tests:
|
||||||
return self.tests
|
return self.tests
|
||||||
|
|
||||||
self.rebuild(all=True)
|
if not self.rebuild():
|
||||||
|
raise RuntimeError("Could not rebuild GStreamer unit tests")
|
||||||
|
|
||||||
self.load_tests_info()
|
self.load_tests_info()
|
||||||
mesontests = self.get_meson_tests()
|
mesontests = self.get_meson_tests()
|
||||||
to_inspect = []
|
to_inspect = []
|
||||||
|
|
Loading…
Reference in a new issue