summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordrebs <drebs@leap.se>2013-02-09 20:38:55 -0200
committerdrebs <drebs@leap.se>2013-02-09 20:38:55 -0200
commitbe3a837c912d3dc90386334e5e389813aa77773a (patch)
tree273b38e09fffe91540017fc6405105a717431eeb /src
parenta4a46d4a9cfc22324cb8a2037a5c4825f14b4b1b (diff)
Couch server subprocess for tests now waits for returncode to avoid zombie childs.
Diffstat (limited to 'src')
-rw-r--r--src/leap/soledad/tests/test_couch.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/leap/soledad/tests/test_couch.py b/src/leap/soledad/tests/test_couch.py
index 55bcf442..09c7269e 100644
--- a/src/leap/soledad/tests/test_couch.py
+++ b/src/leap/soledad/tests/test_couch.py
@@ -57,7 +57,8 @@ class CouchDBWrapper(object):
args = ['couchdb', '-n' '-a', confPath]
#null = open('/dev/null', 'w')
self.process = subprocess.Popen(
- args, env=None, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
+ args, env=None, stdout=subprocess.PIPE, stderr=subprocess.PIPE,
+ close_fds=True)
# find port
logPath = os.path.join(self.tempdir, 'log', 'couch.log')
while not os.path.exists(logPath):
@@ -87,7 +88,7 @@ stderr:
def stop(self):
self.process.terminate()
-
+ self.process.wait()
os.system("rm -rf %s" % self.tempdir)