Behdad Esfahbod | 3b649a3 | 2010-05-12 23:28:38 -0400 | [diff] [blame] | 1 | #!/bin/sh |
| 2 | |
| 3 | LC_ALL=C |
| 4 | export LC_ALL |
| 5 | |
Behdad Esfahbod | 5bc1819 | 2011-05-27 15:58:54 -0400 | [diff] [blame] | 6 | test -z "$srcdir" && srcdir=. |
| 7 | stat=0 |
| 8 | |
| 9 | |
Behdad Esfahbod | 3b649a3 | 2010-05-12 23:28:38 -0400 | [diff] [blame] | 10 | if which nm 2>/dev/null >/dev/null; then |
| 11 | : |
| 12 | else |
| 13 | echo "check-internal-symbols.sh: 'nm' not found; skipping test" |
Behdad Esfahbod | 4538efa | 2011-08-05 20:11:06 -0400 | [diff] [blame] | 14 | exit 77 |
Behdad Esfahbod | 3b649a3 | 2010-05-12 23:28:38 -0400 | [diff] [blame] | 15 | fi |
| 16 | |
Behdad Esfahbod | 3b649a3 | 2010-05-12 23:28:38 -0400 | [diff] [blame] | 17 | so=.libs/libharfbuzz.so |
| 18 | if test -f "$so"; then |
| 19 | echo "Checking that we are exposing internal symbols" |
Behdad Esfahbod | 3f93518 | 2010-05-12 23:48:40 -0400 | [diff] [blame] | 20 | if nm $so | grep ' T ' | grep -v ' T _fini\>\| T _init\>\| T hb_'; then |
Behdad Esfahbod | 3b649a3 | 2010-05-12 23:28:38 -0400 | [diff] [blame] | 21 | echo "Ouch, internal symbols exposed" |
| 22 | stat=1 |
| 23 | fi |
| 24 | else |
| 25 | echo "check-internal-symbols.sh: libharfbuzz.so not found; skipping test" |
Behdad Esfahbod | 4538efa | 2011-08-05 20:11:06 -0400 | [diff] [blame] | 26 | exit 77 |
Behdad Esfahbod | 3b649a3 | 2010-05-12 23:28:38 -0400 | [diff] [blame] | 27 | fi |
| 28 | |
| 29 | exit $stat |