mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 00:01:23 +00:00
validate:launcher: Send SIGINT signal instead of killing the subprocess
This way we get the result from GstValidate even on timeouts
This commit is contained in:
parent
7f54c5dba8
commit
02abb60a67
2 changed files with 5 additions and 4 deletions
|
@ -51,7 +51,7 @@ class PlaybinDescriptor(PipelineDescriptor):
|
|||
def get_pipeline(self, options, protocol, scenario, uri):
|
||||
pipe = self._pipeline
|
||||
if options.mute:
|
||||
fakesink = "fakesink sync=true"
|
||||
fakesink = "'fakesink sync=true'"
|
||||
pipe += " audio-sink=%s video-sink=%s" %(fakesink, fakesink)
|
||||
|
||||
pipe += " uri=%s" % uri
|
||||
|
|
|
@ -24,6 +24,7 @@ import sys
|
|||
import re
|
||||
import time
|
||||
import utils
|
||||
import signal
|
||||
import urlparse
|
||||
import subprocess
|
||||
import reporters
|
||||
|
@ -199,18 +200,18 @@ class Test(Loggable):
|
|||
printc(message, Colors.OKBLUE)
|
||||
|
||||
try:
|
||||
self.process = subprocess.Popen(self.command,
|
||||
self.process = subprocess.Popen("exec " + self.command,
|
||||
stderr=self.reporter.out,
|
||||
stdout=self.reporter.out,
|
||||
shell=True,
|
||||
env=proc_env)
|
||||
self.wait_process()
|
||||
except KeyboardInterrupt:
|
||||
self.process.kill()
|
||||
self.process.send_signal(signal.SIGINT)
|
||||
raise
|
||||
|
||||
try:
|
||||
self.process.terminate()
|
||||
self.process.send_signal(signal.SIGINT)
|
||||
except OSError:
|
||||
pass
|
||||
|
||||
|
|
Loading…
Reference in a new issue