blob: 657d2afcc026d8b1711f7ec89a23ac2c1196616a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/sh
# script to detect compile time errors and warnings in all perl files
INCLUDES="-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/t $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
|