1
0
mirror of https://github.com/postgres/postgres.git synced 2025-10-21 02:52:47 +03:00

Add a script to detect perl compile time errors and warnings

Also add a function that centralizes the logic for locating all our perl
files and use it in pgperlcritic and pgperltidy as well as the new
pgperlcheck.
This commit is contained in:
Andrew Dunstan
2018-06-11 14:47:20 -04:00
parent be3d90026a
commit af616ce483
4 changed files with 37 additions and 22 deletions

View File

@@ -0,0 +1,16 @@
#!/bin/sh
# script to detect compile time errors and warnings in all perl files
INCLUDES="-I src/tools/msvc -I src/tools/msvc/dummylib -I src/backend/catalog"
INCLUDES="-I src/test/perl -I src/backend/utils/mb/Unicode $INCLUDES"
INCLUDES="-I src/bin/pg_rewind -I src/test/ssl $INCLUDES"
set -e
. src/tools/perlcheck/find_perl_files
# for zsh
setopt shwordsplit 2>/dev/null || true
find_perl_files | xargs -L 1 perl $INCLUDES -cw 2>&1 | grep -v OK