Fix check-names.sh

This commit is contained in:
Jarno Lamsa 2019-04-29 12:07:43 +03:00
parent 5b871285f5
commit ce3cb64aeb

View File

@ -26,10 +26,11 @@ tests/scripts/list-symbols.sh
FAIL=0
printf "\nExported symbols declared in header: "
diff exported-symbols identifiers | sed -n -e 's/^< //p' > undeclared
UNDECLARED=$(diff exported-symbols identifiers | sed -n -e 's/^< //p') > undeclared
FILTERED=$( diff tests/scripts/whitelist undeclared | sed -n -e 's/^< //p')
if [ "x$UNDECLARED" != "x" ]; then
if [ "x$FILTERED" = "x" ]; then
echo "PASS"
else
@ -37,6 +38,9 @@ else
echo "$FILTERED"
FAIL=1
fi
else
echo "PASS"
fi
diff macros identifiers | sed -n -e 's/< //p' > actual-macros