From b0c0c2d84679ab2a32a69db0aa8c443f7217f431 Mon Sep 17 00:00:00 2001 From: Thibault Saunier Date: Fri, 7 Dec 2018 09:05:09 -0300 Subject: [PATCH] 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 --- validate/launcher/apps/gstcheck.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/validate/launcher/apps/gstcheck.py b/validate/launcher/apps/gstcheck.py index d186a61e5b..000202bf71 100644 --- a/validate/launcher/apps/gstcheck.py +++ b/validate/launcher/apps/gstcheck.py @@ -58,10 +58,6 @@ class MesonTest(Test): def get_subproc_env(self): env = os.environ.copy() 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(): if val != os.environ.get(var): self.add_env_variable(var, val)