mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 08:11:16 +00:00
validate:launcher: Pass GST_VALIDATE_SCENARIO to the subprocess env only
Summary: And make sure to remove it from the env if the user has it in its main environment. Without that commit we ended up passing scenarios from previous tests to the following ones where None were specified. Reviewers: Mathieu_Du Differential Revision: http://phabricator.freedesktop.org/D98
This commit is contained in:
parent
abb9e0ff2a
commit
adbe811175
1 changed files with 10 additions and 4 deletions
|
@ -459,6 +459,16 @@ class GstValidateTest(Test):
|
|||
subproc_env['GST_GL_XINITTHREADS'] = '1'
|
||||
self.add_env_variable('GST_GL_XINITTHREADS', '1')
|
||||
|
||||
if self.scenario is not None:
|
||||
subproc_env["GST_VALIDATE_SCENARIO"] = self.scenario.get_execution_name()
|
||||
self.add_env_variable("GST_VALIDATE_SCENARIO",
|
||||
subproc_env["GST_VALIDATE_SCENARIO"])
|
||||
else:
|
||||
try:
|
||||
del subproc_env["GST_VALIDATE_SCENARIO"]
|
||||
except KeyError:
|
||||
pass
|
||||
|
||||
return subproc_env
|
||||
|
||||
def clean(self):
|
||||
|
@ -473,10 +483,6 @@ class GstValidateTest(Test):
|
|||
if "GST_VALIDATE_SCENARIOS_PATH" in os.environ:
|
||||
self.add_env_variable("GST_VALIDATE_SCENARIOS_PATH",
|
||||
os.environ["GST_VALIDATE_SCENARIOS_PATH"])
|
||||
if self.scenario is not None:
|
||||
os.environ["GST_VALIDATE_SCENARIO"] = self.scenario.get_execution_name()
|
||||
self.add_env_variable("GST_VALIDATE_SCENARIO",
|
||||
os.environ["GST_VALIDATE_SCENARIO"])
|
||||
|
||||
self.add_env_variable("GST_VALIDATE_CONFIG")
|
||||
self.add_env_variable("GST_VALIDATE_OVERRIDE")
|
||||
|
|
Loading…
Reference in a new issue