diff options
| author | Akio Nakamura <[email protected]> | 2018-11-12 11:06:36 +0900 |
|---|---|---|
| committer | Akio Nakamura <[email protected]> | 2018-11-20 18:28:16 +0900 |
| commit | 3fb09b9889665a24b34f25e9d1385a05058a28b7 (patch) | |
| tree | 22584858721f4dfbeb637fdc3238858a92d2f9db /test/functional/feature_config_args.py | |
| parent | Merge #14768: revert removal of fstream.hpp header in fs.h (diff) | |
| download | discoin-3fb09b9889665a24b34f25e9d1385a05058a28b7.tar.xz discoin-3fb09b9889665a24b34f25e9d1385a05058a28b7.zip | |
Warn unrecognized sections in the config file
In the config file, sections are specified by square bracket pair "[]"$,
or included in the option name itself which separated by a period"(.)".
Typicaly, [testnet] is not a correct section name and specified options
in that section are ignored but user cannot recognize what is happen.
So, add some log/stderr-warning messages if unrecognized section names
are present in the config file after checking section only args.
Diffstat (limited to 'test/functional/feature_config_args.py')
| -rwxr-xr-x | test/functional/feature_config_args.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/functional/feature_config_args.py b/test/functional/feature_config_args.py index 88a9aadc7..d87eabaa6 100755 --- a/test/functional/feature_config_args.py +++ b/test/functional/feature_config_args.py @@ -34,6 +34,11 @@ class ConfArgsTest(BitcoinTestFramework): self.nodes[0].assert_start_raises_init_error(expected_msg='Error reading configuration file: parse error on line 3, using # in rpcpassword can be ambiguous and should be avoided') with open(inc_conf_file_path, 'w', encoding='utf-8') as conf: + conf.write('testnot.datadir=1\n[testnet]\n') + self.restart_node(0) + self.nodes[0].stop_node(expected_stderr='Warning: Section [testnet] is not recognized.' + os.linesep + 'Warning: Section [testnot] is not recognized.') + + with open(inc_conf_file_path, 'w', encoding='utf-8') as conf: conf.write('') # clear def run_test(self): |