mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-05-05 16:58:01 +02:00
check: Make the actual error stand out
This commit is contained in:
parent
8258532794
commit
21a2f90cde
1 changed files with 3 additions and 3 deletions
|
|
@ -23,7 +23,7 @@ stat=0
|
|||
if test -f "$DOC_MODULE-undeclared.txt"; then
|
||||
undeclared=`cat "$DOC_MODULE-undeclared.txt"`
|
||||
if test -n "$undeclared"; then
|
||||
echo Undeclared documentation symbols: 1>&2
|
||||
echo "*** ERROR: Undeclared documentation symbols:" 1>&2
|
||||
cat "$DOC_MODULE-undeclared.txt" 1>&2
|
||||
stat=1
|
||||
fi
|
||||
|
|
@ -31,7 +31,7 @@ fi >&2
|
|||
if test -f "$DOC_MODULE-unused.txt"; then
|
||||
unused=`cat "$DOC_MODULE-unused.txt"`
|
||||
if test -n "$unused"; then
|
||||
echo Unused documentated symbols: 1>&2
|
||||
echo "*** ERROR: Unused documentated symbols:" 1>&2
|
||||
cat "$DOC_MODULE-unused.txt" 1>&2
|
||||
stat=1
|
||||
fi
|
||||
|
|
@ -41,7 +41,7 @@ if test -f "$DOC_MODULE-undocumented.txt"; then
|
|||
grep '^0 not documented' "$DOC_MODULE-undocumented.txt" >/dev/null; then
|
||||
:
|
||||
else
|
||||
echo Incomplete or undocumented symbols: 1>&2
|
||||
echo "*** ERROR: Incomplete or undocumented symbols:" 1>&2
|
||||
cat "$DOC_MODULE-undocumented.txt" 1>&2
|
||||
stat=1
|
||||
fi
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue