build: Remove abicheck.sh

We now control the visibility of symbols directly from the header files,
so we always have the correct ABI.
This commit is contained in:
Emmanuele Bassi 2014-03-17 18:52:27 +00:00
parent 386be83f24
commit 8fc47244b0
2 changed files with 0 additions and 65 deletions

View File

@ -1041,22 +1041,3 @@ typelib_DATA = $(INTROSPECTION_GIRS:.gir=.typelib)
CLEANFILES += $(gir_DATA) $(typelib_DATA)
endif # HAVE_INTROSPECTION
# Test
clutter_all_c_sources = \
$(backend_source_c) \
$(backend_source_c_priv) \
$(source_c) \
$(source_c_priv) \
$(deprecated_c) \
$(deprecated_c_priv) \
$(cally_sources_c) \
$(built_source_c)
TESTS_ENVIRONMENT = srcdir="$(srcdir)" CLUTTER_BACKENDS="$(CLUTTER_BACKENDS)"
LOG_DRIVER = env AM_TAP_AWK='$(AWK)' $(SHELL) $(top_srcdir)/build/autotools/tap-driver.sh
if OS_LINUX
TESTS = abicheck.sh
endif
EXTRA_DIST += abicheck.sh

View File

@ -1,46 +0,0 @@
#! /bin/sh
has_x11_backend=no
has_gdk_backend=no
has_wayland_backend=no
for backend in ${CLUTTER_BACKENDS}; do
case "$backend" in
x11) has_x11_backend=yes ;;
gdk) has_gdk_backend=yes ;;
wayland) has_wayland_backend=yes ;;
esac
done
cppargs="-DG_OS_UNIX"
if [ $has_x11_backend = "yes" ]; then
cppargs="$cppargs -DCLUTTER_WINDOWING_X11 -DCLUTTER_WINDOWING_GLX"
fi
if [ $has_gdk_backend = "yes" ]; then
cppargs="$cppargs -DCLUTTER_WINDOWING_GDK"
fi
if [ $has_wayland_backend = "yes" ]; then
cppargs="$cppargs -DCLUTTER_WINDOWING_WAYLAND"
fi
echo "1..1"
echo "# Start of abicheck"
cpp -P ${cppargs} ${srcdir:-.}/clutter.symbols | sed -e '/^$/d' -e 's/ G_GNUC.*$//' -e 's/ PRIVATE//' -e 's/ DATA//' | sort > expected-abi
nm -D -g --defined-only .libs/libclutter-1.0.so | cut -d ' ' -f 3 | egrep -v '^(__bss_start|_edata|_end)' | sort > actual-abi
diff -u expected-abi actual-abi > diff-abi
if [ $? = 0 ]; then
echo "ok 1 expected abi"
rm -f diff-abi
else
echo "not ok 1 expected abi"
echo "# difference in diff-abi"
fi
rm -f actual-abi expected-abi
echo "# End of abicheck"