mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-16 13:26:36 +00:00
validate:launcher: Do not CK_FORK on our test
Otherwise the process can't cleanly quit on assertion because of the way libcheck runner is implemented
This commit is contained in:
parent
72995d5bbe
commit
b0c0c2d846
1 changed files with 0 additions and 4 deletions
|
@ -58,10 +58,6 @@ class MesonTest(Test):
|
||||||
def get_subproc_env(self):
|
def get_subproc_env(self):
|
||||||
env = os.environ.copy()
|
env = os.environ.copy()
|
||||||
env.update(self.child_env)
|
env.update(self.child_env)
|
||||||
# No reason to fork since we are launching
|
|
||||||
# each test individually
|
|
||||||
env['CK_FORK'] = 'no'
|
|
||||||
self.add_env_variable('CK_FORK', 'no')
|
|
||||||
for var, val in self.child_env.items():
|
for var, val in self.child_env.items():
|
||||||
if val != os.environ.get(var):
|
if val != os.environ.get(var):
|
||||||
self.add_env_variable(var, val)
|
self.add_env_variable(var, val)
|
||||||
|
|
Loading…
Reference in a new issue