]> git.droids-corp.org - dpdk.git/blobdiff - devtools/check-abi.sh
examples/l3fwd: add vector stubs for RISC-V
[dpdk.git] / devtools / check-abi.sh
index 9835e346da7e1e155fc74d3722ecef7d8464bf55..d465c8cee0cb61c609c014960cccf0ff35047764 100755 (executable)
@@ -37,11 +37,8 @@ fi
 error=
 for dump in $(find $refdir -name "*.dump"); do
        name=$(basename $dump)
-       # 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 grep -qE "\<soname='[^']*_glue\.so\.[^']*'" $dump; then
-               echo "Skipped glue library $name."
+       if grep -qE '\<librte_*(.*_octeontx2|raw_dpaa2_qdma)' $dump; then
+               echo "Skipped removed driver $name."
                continue
        fi
        dump2=$(find $newdir -name $name)