mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-23 15:48:23 +00:00
validate: Check subprocess return code in rendering tests
This commit is contained in:
parent
abb32de25b
commit
3a04a1f76b
1 changed files with 3 additions and 0 deletions
|
@ -184,6 +184,9 @@ class GESRenderTest(GESTest, GstValidateEncodingTestInterface):
|
|||
|
||||
def check_results(self):
|
||||
if self.result in [Result.PASSED, Result.NOT_RUN] and self.scenario is None:
|
||||
if self.process.returncode != 0:
|
||||
return super().check_results()
|
||||
|
||||
res, msg = self.check_encoded_file()
|
||||
self.set_result(res, msg)
|
||||
else:
|
||||
|
|
Loading…
Reference in a new issue