diff options
author | Gleb Naumenko <naumenko.gs@gmail.com> | 2020-02-18 17:45:02 -0500 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2021-10-21 09:38:55 +0800 |
commit | 0659f12b131fc5915fe7a493306af197f4fb838b (patch) | |
tree | 9d159bc034b5959d4ddf714df3298b51d4c937c8 /test/lint/lint-format-strings.sh | |
parent | 0eb7928ab8d9dcb840e4965bfa81deb752b00dfa (diff) |
Add minisketch dependency
Diffstat (limited to 'test/lint/lint-format-strings.sh')
-rwxr-xr-x | test/lint/lint-format-strings.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lint/lint-format-strings.sh b/test/lint/lint-format-strings.sh index cb3ec09ae6..d98f12b1a1 100755 --- a/test/lint/lint-format-strings.sh +++ b/test/lint/lint-format-strings.sh @@ -34,7 +34,7 @@ if ! python3 -m doctest test/lint/lint-format-strings.py; then fi for S in "${FUNCTION_NAMES_AND_NUMBER_OF_LEADING_ARGUMENTS[@]}"; do IFS="," read -r FUNCTION_NAME SKIP_ARGUMENTS <<< "${S}" - for MATCHING_FILE in $(git grep --full-name -l "${FUNCTION_NAME}" -- "*.c" "*.cpp" "*.h" | sort | grep -vE "^src/(leveldb|secp256k1|tinyformat|univalue|test/fuzz/strprintf.cpp)"); do + for MATCHING_FILE in $(git grep --full-name -l "${FUNCTION_NAME}" -- "*.c" "*.cpp" "*.h" | sort | grep -vE "^src/(leveldb|secp256k1|minisketch|tinyformat|univalue|test/fuzz/strprintf.cpp)"); do MATCHING_FILES+=("${MATCHING_FILE}") done if ! test/lint/lint-format-strings.py --skip-arguments "${SKIP_ARGUMENTS}" "${FUNCTION_NAME}" "${MATCHING_FILES[@]}"; then |