devtools: skip experimental libraries in ABI check

We don't provide ABI compatibility for experimental libraries.
Skip those libraries by catching a soname containing a version starting
with '0.'.

Align the special case for the glue libraries by using the soname too.
Once libabigail has support for it, we will have a single type of rule.

Fixes: 777014e56d07 ("devtools: add ABI checks")

Signed-off-by: David Marchand <david.marchand@redhat.com>
Acked-by: Thomas Monjalon <thomas@monjalon.net>
This commit is contained in:
David Marchand 2020-02-21 16:42:53 +01:00
parent 5d24d6a550
commit 23d7ad5db4

View File

@ -40,8 +40,13 @@ for dump in $(find $refdir -name "*.dump"); do
# skip glue drivers, example librte_pmd_mlx5_glue.dump
# We can't rely on a suppression rule for now:
# https://sourceware.org/bugzilla/show_bug.cgi?id=25480
if [ "$name" != "${name%%_glue.dump}" ]; then
echo "Skipping ${dump}..."
if grep -qE "\<soname='[^']*_glue\.so\.[^']*'" $dump; then
echo "Skipped glue library $name."
continue
fi
# skip experimental libraries, with a sover starting with 0.
if grep -qE "\<soname='[^']*\.so\.0\.[^']*'" $dump; then
echo "Skipped experimental library $name."
continue
fi
dump2=$(find $newdir -name $name)