2016-01-04 15:49:09 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# Make sure the doxygen documentation builds without warnings
|
2020-05-25 22:33:31 +00:00
|
|
|
#
|
2020-08-07 11:07:28 +00:00
|
|
|
# Copyright The Mbed TLS Contributors
|
2023-11-02 19:47:20 +00:00
|
|
|
# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
|
2016-01-04 15:49:09 +00:00
|
|
|
|
2023-02-06 11:54:53 +00:00
|
|
|
# Abort on errors (and uninitialised variables)
|
2016-01-04 15:49:09 +00:00
|
|
|
set -eu
|
|
|
|
|
|
|
|
if [ -d library -a -d include -a -d tests ]; then :; else
|
2023-08-03 15:45:20 +00:00
|
|
|
echo "Must be run from Mbed TLS root" >&2
|
2016-01-04 15:49:09 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2016-01-12 14:17:52 +00:00
|
|
|
if scripts/apidoc_full.sh > doc.out 2>doc.err; then :; else
|
2016-01-04 15:49:09 +00:00
|
|
|
cat doc.err
|
|
|
|
echo "FAIL" >&2
|
|
|
|
exit 1;
|
|
|
|
fi
|
|
|
|
|
2016-01-08 15:47:33 +00:00
|
|
|
cat doc.out doc.err | \
|
|
|
|
grep -v "warning: ignoring unsupported tag" \
|
|
|
|
> doc.filtered
|
|
|
|
|
2023-01-01 16:19:49 +00:00
|
|
|
if grep -E "(warning|error):" doc.filtered; then
|
2016-01-04 15:49:09 +00:00
|
|
|
echo "FAIL" >&2
|
|
|
|
exit 1;
|
|
|
|
fi
|
|
|
|
|
|
|
|
make apidoc_clean
|
2016-01-08 15:47:33 +00:00
|
|
|
rm -f doc.out doc.err doc.filtered
|