From f57762550469ed1d94502a45d60d35f94b1f68d6 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 4 Oct 2021 14:51:15 +0530 Subject: [PATCH] ... --- setup/test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/test.py b/setup/test.py index 9479c322ae..02bbc84e58 100644 --- a/setup/test.py +++ b/setup/test.py @@ -185,7 +185,7 @@ class Test(Command): if 'libasan' not in os.environ.get('LD_PRELOAD', ''): os.environ['LD_PRELOAD'] = os.path.abspath(subprocess.check_output('gcc -print-file-name=libasan.so'.split()).decode('utf-8').strip()) os.environ['ASAN_OPTIONS'] = 'detect_leaks=0' - os.environ['PYCRYPTODOME_DISABLE_DEEPBIND'] = 1 # https://github.com/Legrandin/pycryptodome/issues/558 + os.environ['PYCRYPTODOME_DISABLE_DEEPBIND'] = '1' # https://github.com/Legrandin/pycryptodome/issues/558 self.info(f'Re-execing with LD_PRELOAD={os.environ["LD_PRELOAD"]}') sys.stdout.flush() os.execl('setup.py', *sys.argv)