You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
337 B
14 lines
337 B
#!/bin/sh -x
|
|
|
|
# This program launches "abidw --abidiff src/.libs/libabigail.so"
|
|
# This compares libabigail.so against its own ABIXML output.
|
|
abidw=@top_builddir@/tools/abidw
|
|
objdir=@top_builddir@/src/.libs
|
|
|
|
echo "ENABLE_SLOW_TEST="$ENABLE_SLOW_TEST
|
|
|
|
if test x$ENABLE_SLOW_TEST != x; then
|
|
`$abidw --abidiff $objdir/libabigail.so`
|
|
fi
|
|
|