From b168dd30cf71ac176e271bc610b0b1a79ceaf075 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Tue, 6 Aug 2019 23:16:35 +0000 Subject: [PATCH] Bugfix: QA: Run tests with UPnP disabled Needed for builds configured with --enable-upnp-default --- test/functional/test_framework/util.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test/functional/test_framework/util.py b/test/functional/test_framework/util.py index 3d9be0d0a..821e1cd3c 100644 --- a/test/functional/test_framework/util.py +++ b/test/functional/test_framework/util.py @@ -293,6 +293,7 @@ def initialize_datadir(dirname, n, chain): f.write("discover=0\n") f.write("listenonion=0\n") f.write("printtoconsole=0\n") + f.write("upnp=0\n") os.makedirs(os.path.join(datadir, 'stderr'), exist_ok=True) os.makedirs(os.path.join(datadir, 'stdout'), exist_ok=True) return datadir