mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-02-05 13:11:58 +00:00
Fix crash when parsing command line with -noincludeconf=0
Github-Pull: #22002 Rebased-From: fa9f711c3746ca3962f15224285a453744cd45b3
This commit is contained in:
parent
c5357fa415
commit
70eac6fcd0
@ -340,7 +340,7 @@ bool ArgsManager::ParseParameters(int argc, const char* const argv[], std::strin
|
||||
bool success = true;
|
||||
if (auto* includes = util::FindKey(m_settings.command_line_options, "includeconf")) {
|
||||
for (const auto& include : util::SettingsSpan(*includes)) {
|
||||
error += "-includeconf cannot be used from commandline; -includeconf=" + include.get_str() + "\n";
|
||||
error += "-includeconf cannot be used from commandline; -includeconf=" + include.write() + "\n";
|
||||
success = false;
|
||||
}
|
||||
}
|
||||
|
||||
@ -43,7 +43,14 @@ class IncludeConfTest(BitcoinTestFramework):
|
||||
|
||||
self.log.info("-includeconf cannot be used as command-line arg")
|
||||
self.stop_node(0)
|
||||
self.nodes[0].assert_start_raises_init_error(extra_args=["-includeconf=relative2.conf"], expected_msg="Error: Error parsing command line arguments: -includeconf cannot be used from commandline; -includeconf=relative2.conf")
|
||||
self.nodes[0].assert_start_raises_init_error(
|
||||
extra_args=['-noincludeconf=0'],
|
||||
expected_msg='Error: Error parsing command line arguments: -includeconf cannot be used from commandline; -includeconf=true',
|
||||
)
|
||||
self.nodes[0].assert_start_raises_init_error(
|
||||
extra_args=['-includeconf=relative2.conf'],
|
||||
expected_msg='Error: Error parsing command line arguments: -includeconf cannot be used from commandline; -includeconf="relative2.conf"',
|
||||
)
|
||||
|
||||
self.log.info("-includeconf cannot be used recursively. subversion should end with 'main; relative)/'")
|
||||
with open(os.path.join(self.options.tmpdir, "node0", "relative.conf"), "a", encoding="utf8") as f:
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user