Add --internal option to list-identifiers.sh

When doing ABI/API checking, its useful to have a list of all the
identifiers that are defined in the internal header files, as we
do not promise compatibility for them. This option allows for a
simple method of getting them for use with the ABI checking script.
This commit is contained in:
Darryl Green 2019-04-04 11:33:22 +01:00
parent 86016a03a1
commit 383d1fa6a5

View file

@ -1,4 +1,9 @@
#!/bin/sh
#!/bin/bash
#
# Outputs a file containing identifiers from internal header files or all
# header files, based on --internal flag.
#
# Usage: list-identifiers.sh [ -i | --internal ]
set -eu
@ -7,7 +12,29 @@ if [ -d include/mbedtls ]; then :; else
exit 1
fi
HEADERS=$( ls include/mbedtls/*.h | egrep -v 'compat-1\.3\.h|bn_mul' )
INTERNAL=""
until [ -z "${1-}" ]
do
case "$1" in
-i|--internal)
INTERNAL="1"
;;
*)
# print error
echo "Unknown argument: '$1'"
exit 1
;;
esac
shift
done
if [ $INTERNAL ]
then
HEADERS=$( ls include/mbedtls/*_internal.h | egrep -v 'compat-1\.3\.h|bn_mul' )
else
HEADERS=$( ls include/mbedtls/*.h | egrep -v 'compat-1\.3\.h|bn_mul' )
fi
rm -f identifiers