summaryrefslogtreecommitdiffstats
path: root/tests/helpers/common.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/helpers/common.py')
-rwxr-xr-xtests/helpers/common.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/helpers/common.py b/tests/helpers/common.py
index e316718..56ea9ff 100755
--- a/tests/helpers/common.py
+++ b/tests/helpers/common.py
@@ -24,6 +24,7 @@ import os
import pwd
import shutil
import signal
+import random
from string import Template
import subprocess
@@ -126,6 +127,8 @@ class IpsilonTestBase(object):
f.write(auth)
def start_http_server(self, conf, env):
+ env['MALLOC_CHECK_'] = '3'
+ env['MALLOC_PERTURB_'] = str(random.randint(0, 32767) % 255 + 1)
p = subprocess.Popen(['/usr/sbin/httpd', '-DFOREGROUND', '-f', conf],
env=env, preexec_fn=os.setsid)
self.processes.append(p)