2014-08-28 Niels Möller <nisse@lysator.liu.se>
+ * testsuite/symbols-test: Regexp fixes, to better filter out
+ get_pc_thunk functions.
+
* ecc-generic-redc.c (ecc_generic_redc): Deleted file and
function. Split into...
* ecc-pp1-redc.c (ecc_pp1_redc): New file and function.
: ${NM:=nm}
-# * nm on aix seems to generate bogus outbut including random binary
+# * nm on aix seems to generate bogus output including random binary
# data. Using -g is a workaround to get rid of that. But nm -g
# doesn't work on Solaris-2.4, so try nm -g first, and plain nm if
# -g isn't recognized.
# code.
( $NM -g ../libnettle.a || $NM ../libnettle.a ) \
- | grep ' [DRT] ' | egrep -v '( |^)\.?_?(_?nettle_)|get_pc_thunk' \
+ | grep ' [DRT] ' | egrep -v '( |^|\.)(\.?_?(_?nettle_)|get_pc_thunk)' \
| sort -k3 > test1.out
if [ -s test1.out ] ; then
PATTERN="$PATTERN|mp_|mpz_|mpn_"
fi
( $NM -g ../libhogweed.a || $NM ../libhogweed.a ) \
- | grep ' [DRT] ' | egrep -v "( |^)($PATTERN)" \
+ | grep ' [DRT] ' | egrep -v "( |^|\.)($PATTERN)" \
| sort -k3 > test1.out
if [ -s test1.out ] ; then