blob: a2f32b1ba2e8b4c13ace81dc6db0ed8ccd9e6ac4 [file] [log] [blame]
Behdad Esfahbod3b649a32010-05-12 23:28:38 -04001#!/bin/sh
2
3LC_ALL=C
4export LC_ALL
5
Behdad Esfahbod5bc18192011-05-27 15:58:54 -04006test -z "$srcdir" && srcdir=.
7stat=0
8
9
Behdad Esfahbod3b649a32010-05-12 23:28:38 -040010if which nm 2>/dev/null >/dev/null; then
11 :
12else
13 echo "check-internal-symbols.sh: 'nm' not found; skipping test"
Behdad Esfahbod4538efa2011-08-05 20:11:06 -040014 exit 77
Behdad Esfahbod3b649a32010-05-12 23:28:38 -040015fi
16
Behdad Esfahbod3b649a32010-05-12 23:28:38 -040017so=.libs/libharfbuzz.so
18if test -f "$so"; then
19 echo "Checking that we are exposing internal symbols"
Behdad Esfahbod3f935182010-05-12 23:48:40 -040020 if nm $so | grep ' T ' | grep -v ' T _fini\>\| T _init\>\| T hb_'; then
Behdad Esfahbod3b649a32010-05-12 23:28:38 -040021 echo "Ouch, internal symbols exposed"
22 stat=1
23 fi
24else
25 echo "check-internal-symbols.sh: libharfbuzz.so not found; skipping test"
Behdad Esfahbod4538efa2011-08-05 20:11:06 -040026 exit 77
Behdad Esfahbod3b649a32010-05-12 23:28:38 -040027fi
28
29exit $stat