mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-26 23:35:43 +01:00
Fix check-names.sh
This commit is contained in:
parent
5b871285f5
commit
ce3cb64aeb
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user