Skip to content
Snippets Groups Projects
Commit e3639f07 authored by Martin Storsjö's avatar Martin Storsjö Committed by Niels Möller
Browse files

* testsuite/symbols-test: Use $NM, falling back to nm if undefined.

* testsuite/Makefile.in (check): Pass $(NM) in the environment of
run-tests.

Rev: nettle/testsuite/Makefile.in:1.16
Rev: nettle/testsuite/symbols-test:1.4
parent 08b08e08
No related branches found
No related tags found
No related merge requests found
......@@ -89,7 +89,7 @@ $(TARGETS) $(EXTRA_TARGETS): testutils.$(OBJEXT) \
# The PATH update is for locating dlls on w*ndows.
check: $(TS_ALL) $(srcdir)/run-tests
LD_LIBRARY_PATH=../.lib PATH="../.lib:$$PATH" srcdir="$(srcdir)" \
EMULATOR="$(EMULATOR)" $(srcdir)/run-tests $(TS_ALL)
EMULATOR="$(EMULATOR)" NM="$(NM)" $(srcdir)/run-tests $(TS_ALL)
Makefile: $(srcdir)/Makefile.in ../config.status
......
......@@ -6,7 +6,7 @@ if [ -z "$srcdir" ] ; then
srcdir=`pwd`
fi
# FIXME: Check libhogweed.a too.
: ${NM:=nm}
# * nm on aix seems to generate bogus outbut including random binary
# data. Using -g is a workaround to get rid of that. But nm -g
......@@ -16,7 +16,7 @@ fi
# * gcc on x86 generates functions like __i686.get_pc_thunk.bx in pic
# code.
( nm -g ../libnettle.a || nm ../libnettle.a ) \
( $NM -g ../libnettle.a || $NM ../libnettle.a ) \
| grep ' [DRT] ' | egrep -v '( |^)\.?_?(_?nettle_|memxor)|get_pc_thunk' \
| sort -k3 > test1.out
......@@ -27,7 +27,7 @@ if [ -s test1.out ] ; then
fi
if [ -s ../libhogweed.a ] ; then
( nm -g ../libhogweed.a || nm ../libhogweed.a ) \
( $NM -g ../libhogweed.a || $NM ../libhogweed.a ) \
| grep ' [DRT] ' | egrep -v '( |^)\.?_?_?nettle_|get_pc_thunk' \
| sort -k3 > test1.out
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment