diff options
author | fanquake <fanquake@gmail.com> | 2022-10-14 13:55:53 +0800 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2022-10-31 10:17:04 +0000 |
commit | 3a0b352c63db543833e0f919a004cf2c5093fe9c (patch) | |
tree | 039448fe79ddaa2b74cc23629238f01ee181523e /ci | |
parent | 058eb69ce47c17205a41fc667ce66429f09a332a (diff) |
refactor: move url.h/cpp from lib util to lib common
Diffstat (limited to 'ci')
-rwxr-xr-x | ci/test/06_script_b.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/test/06_script_b.sh b/ci/test/06_script_b.sh index c0b7a969c0..89e517d83c 100755 --- a/ci/test/06_script_b.sh +++ b/ci/test/06_script_b.sh @@ -40,6 +40,7 @@ if [ "${RUN_TIDY}" = "true" ]; then ( CI_EXEC run-clang-tidy -quiet "${MAKEJOBS}" ) | grep -C5 "error" export P_CI_DIR="${BASE_BUILD_DIR}/bitcoin-$HOST/" CI_EXEC "python3 ${DIR_IWYU}/include-what-you-use/iwyu_tool.py"\ + " src/common/url.cpp"\ " src/compat"\ " src/dbwrapper.cpp"\ " src/init"\ @@ -68,7 +69,6 @@ if [ "${RUN_TIDY}" = "true" ]; then " src/util/strencodings.cpp"\ " src/util/string.cpp"\ " src/util/syserror.cpp"\ - " src/util/url.cpp"\ " src/zmq"\ " -p . ${MAKEJOBS} -- -Xiwyu --cxx17ns -Xiwyu --mapping_file=${BASE_BUILD_DIR}/bitcoin-$HOST/contrib/devtools/iwyu/bitcoin.core.imp" fi |