mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-25 18:53:23 -03:00
Ignore unknown config file options for now
This commit is contained in:
parent
04ce0d88ca
commit
247d5740d2
3 changed files with 7 additions and 5 deletions
|
@ -96,7 +96,7 @@ static bool AppInit(int argc, char* argv[])
|
||||||
fprintf(stderr, "Error: Specified data directory \"%s\" does not exist.\n", gArgs.GetArg("-datadir", "").c_str());
|
fprintf(stderr, "Error: Specified data directory \"%s\" does not exist.\n", gArgs.GetArg("-datadir", "").c_str());
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
if (!gArgs.ReadConfigFiles(error)) {
|
if (!gArgs.ReadConfigFiles(error, true)) {
|
||||||
fprintf(stderr, "Error reading configuration file: %s\n", error.c_str());
|
fprintf(stderr, "Error reading configuration file: %s\n", error.c_str());
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
|
@ -53,7 +53,7 @@ class NodeImpl : public Node
|
||||||
{
|
{
|
||||||
return gArgs.ParseParameters(argc, argv, error);
|
return gArgs.ParseParameters(argc, argv, error);
|
||||||
}
|
}
|
||||||
bool readConfigFiles(std::string& error) override { return gArgs.ReadConfigFiles(error); }
|
bool readConfigFiles(std::string& error) override { return gArgs.ReadConfigFiles(error, true); }
|
||||||
bool softSetArg(const std::string& arg, const std::string& value) override { return gArgs.SoftSetArg(arg, value); }
|
bool softSetArg(const std::string& arg, const std::string& value) override { return gArgs.SoftSetArg(arg, value); }
|
||||||
bool softSetBoolArg(const std::string& arg, bool value) override { return gArgs.SoftSetBoolArg(arg, value); }
|
bool softSetBoolArg(const std::string& arg, bool value) override { return gArgs.SoftSetBoolArg(arg, value); }
|
||||||
void selectParams(const std::string& network) override { SelectParams(network); }
|
void selectParams(const std::string& network) override { SelectParams(network); }
|
||||||
|
|
|
@ -55,9 +55,11 @@ class IncludeConfTest(BitcoinTestFramework):
|
||||||
self.stop_node(0, expected_stderr="warning: -includeconf cannot be used from included files; ignoring -includeconf=relative2.conf")
|
self.stop_node(0, expected_stderr="warning: -includeconf cannot be used from included files; ignoring -includeconf=relative2.conf")
|
||||||
|
|
||||||
self.log.info("-includeconf cannot contain invalid arg")
|
self.log.info("-includeconf cannot contain invalid arg")
|
||||||
with open(os.path.join(self.options.tmpdir, "node0", "relative.conf"), "w", encoding="utf8") as f:
|
|
||||||
f.write("foo=bar\n")
|
# Commented out as long as we ignore invalid arguments in configuration files
|
||||||
self.nodes[0].assert_start_raises_init_error(expected_msg="Error reading configuration file: Invalid configuration value foo")
|
#with open(os.path.join(self.options.tmpdir, "node0", "relative.conf"), "w", encoding="utf8") as f:
|
||||||
|
# f.write("foo=bar\n")
|
||||||
|
#self.nodes[0].assert_start_raises_init_error(expected_msg="Error reading configuration file: Invalid configuration value foo")
|
||||||
|
|
||||||
self.log.info("-includeconf cannot be invalid path")
|
self.log.info("-includeconf cannot be invalid path")
|
||||||
os.remove(os.path.join(self.options.tmpdir, "node0", "relative.conf"))
|
os.remove(os.path.join(self.options.tmpdir, "node0", "relative.conf"))
|
||||||
|
|
Loading…
Add table
Reference in a new issue