summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--solenv/qa/python/gbuildtoide.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/solenv/qa/python/gbuildtoide.py b/solenv/qa/python/gbuildtoide.py
index af2014d11342..4de079e85c55 100644
--- a/solenv/qa/python/gbuildtoide.py
+++ b/solenv/qa/python/gbuildtoide.py
@@ -28,6 +28,8 @@ class CheckGbuildToIde(unittest.TestCase):
def test_gbuildtoide(self):
os.chdir(os.path.join(os.environ['SRCDIR'], 'solenv', 'qa', 'python', 'selftest'))
+ # make may find instdir/program/libfreebl3.so and fall over if that was
+ del(os.environ['LD_LIBRARY_PATH']) # built with ASAN; prevent that
make = os.environ['MAKE']
subprocess.check_call([make, 'gbuildtoide', 'WORKDIR=%s' % self.tempworkmixed])
jsonfiles = os.listdir(os.path.join(self.tempwork, 'GbuildToIde', 'Library'))