tests: Temporarily whitelist example binaries in tools/

This commit is contained in:
Jakub Jelen 2020-04-22 15:40:48 +02:00 committed by Frank Morgner
parent 3c7823d1f0
commit a1d53aa217
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ fi
RES=0
# find all tools in src/tools (files without extension)
TOOLS=`find "${SOURCE_PATH}/src/tools" -maxdepth 1 -type f ! -name "*.*" | sed -E -e "s|.*/([a-z0-9-]*).*|\1|"`
TOOLS=`find "${SOURCE_PATH}/src/tools" -maxdepth 1 -type f ! -name "*.*" | sed -E -e "s|.*/([a-z0-9-]*).*|\1|" | grep -v -- -example`
for T in $TOOLS; do
if [[ ! -f "${SOURCE_PATH}/doc/tools/$T.1.xml" ]]; then
echo "Missing manual page for '$T'"