validate: Pipe debug output to a file when discovering scenarios

Otherwise `gst-validate-launcher` can get veeery noisy

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-editing-services/-/merge_requests/198>
This commit is contained in:
Thibault Saunier 2020-07-03 18:00:39 -04:00
parent fc7faf6a03
commit 1ae290ec42

View file

@ -21,6 +21,7 @@
import os
import sys
import tempfile
import urllib.parse
import subprocess
from launcher import utils
@ -263,12 +264,12 @@ class GESTestsManager(TestsManager):
def init(self):
try:
if "--set-scenario=" in subprocess.check_output([GES_LAUNCH_COMMAND, "--help"]).decode():
return True
else:
self.warning("Can not use ges-launch, it seems not to be compiled against"
" gst-validate")
with tempfile.NamedTemporaryFile() as f:
if "--set-scenario=" in subprocess.check_output([GES_LAUNCH_COMMAND, "--help"], stderr=f).decode():
return True
else:
self.warning("Can not use ges-launch, it seems not to be compiled against"
" gst-validate")
except subprocess.CalledProcessError as e:
self.warning("Can not use ges-launch: %s" % e)
except OSError as e: