aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Chow <achow101-github@achow101.com>2021-03-01 16:10:46 -0500
committerAndrew Chow <achow101-github@achow101.com>2021-03-06 15:19:08 -0500
commite21276a82a9996c73e43990ccf927397f71399ea (patch)
treec9da59204f9b8a7b132ad837f403c79475e5a40f
parent43f3ada27b835e6b198f9a669e4955d06f5c4d08 (diff)
downloadbitcoin-e21276a82a9996c73e43990ccf927397f71399ea.tar.xz
qt test: Don't bind to regtest port
The qt tests don't need to bind to the regtest port. By not binding, it will no longer conflict with existing regtest instances and the tests will run as normal.
-rw-r--r--src/qt/test/test_main.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/qt/test/test_main.cpp b/src/qt/test/test_main.cpp
index 9ef5fe8fc7..a1baf6a402 100644
--- a/src/qt/test/test_main.cpp
+++ b/src/qt/test/test_main.cpp
@@ -54,6 +54,13 @@ int main(int argc, char* argv[])
NodeContext node_context;
std::unique_ptr<interfaces::Node> node = interfaces::MakeNode(&node_context);
+ gArgs.ForceSetArg("-listen", "0");
+ gArgs.ForceSetArg("-listenonion", "0");
+ gArgs.ForceSetArg("-discover", "0");
+ gArgs.ForceSetArg("-dnsseed", "0");
+ gArgs.ForceSetArg("-fixedseeds", "0");
+ gArgs.ForceSetArg("-upnp", "0");
+ gArgs.ForceSetArg("-natpmp", "0");
bool fInvalid = false;