diff options
author | MarcoFalke <falke.marco@gmail.com> | 2018-11-15 12:19:41 -0500 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2018-11-15 12:19:11 -0500 |
commit | fa5e0452e875a7ca6bf6fe61fdd652d341eece40 (patch) | |
tree | deb8e007d0e5d1bdf6ffb4f9bf81275504ec8905 /test/lint | |
parent | fa91e8eda541acdb78ca481b74605639f319c108 (diff) |
rpc: Documentation fixups
Diffstat (limited to 'test/lint')
-rwxr-xr-x | test/lint/lint-rpc-help.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/lint/lint-rpc-help.sh b/test/lint/lint-rpc-help.sh index 602396745f..faac5d43e2 100755 --- a/test/lint/lint-rpc-help.sh +++ b/test/lint/lint-rpc-help.sh @@ -3,10 +3,17 @@ # Copyright (c) 2018 The Bitcoin Core developers # Distributed under the MIT software license, see the accompanying # file COPYING or http://www.opensource.org/licenses/mit-license.php. +# +# Check that all RPC help texts are generated by RPCHelpMan. export LC_ALL=C EXIT_CODE=0 + +# Assume that all multiline strings passed into a runtime_error are help texts. +# This is potentially fragile, but the linter is only temporary and can safely +# be removed early 2019. + non_autogenerated_help=$(grep --perl-regexp --null-data --only-matching 'runtime_error\(\n\s*".*\\n"\n' $(git ls-files -- "*.cpp")) if [[ ${non_autogenerated_help} != "" ]]; then echo "Must use RPCHelpMan to generate the help for the following RPC methods:" |