]> git.ipfire.org Git - thirdparty/nettle.git/commitdiff
(TS_SH): New test case symbols-test.
authorNiels Möller <nisse@lysator.liu.se>
Sat, 12 Apr 2003 15:51:51 +0000 (17:51 +0200)
committerNiels Möller <nisse@lysator.liu.se>
Sat, 12 Apr 2003 15:51:51 +0000 (17:51 +0200)
(EXTRA_PROGRAMS): Added testutils, as a kludge to
get automake to track dependencies for testutils.o.

Rev: src/nettle/testsuite/Makefile.am:1.38
Rev: src/nettle/testsuite/symbols-test:1.1

testsuite/Makefile.am
testsuite/symbols-test [new file with mode: 0755]

index d530f798fbed44806753f61b0d9f9e6112d901aa..a239440ce46174c3b8b29fd16be29f46c54516e8 100644 (file)
@@ -19,17 +19,20 @@ TS_PROGS = aes-test arcfour-test blowfish-test cast128-test \
           dsa-test dsa-keygen-test \
           yarrow-test
 
-TS_SH = sexp-conv-test
+TS_SH = sexp-conv-test symbols-test
 
 TS_ALL = $(TS_PROGS) $(TS_SH)
 
 noinst_PROGRAMS = $(TS_PROGS)
 
+# Workaround to get automake to keep dependencies for testutils.o
+EXTRA_PROGRAMS = testutils
+
 # libnettle.a is added at the end to make sure all programs depend on it.
 # It seems there's no DEPENDENCIES variable that affects all programs.
 
 LDADD = testutils.o -lnettle ../libnettle.a
-EXTRA_DIST = $(TS_SH) testutils.c testutils.h \
+EXTRA_DIST = $(TS_SH) testutils.h \
             run-tests rfc1750.txt
 
 CLEANFILES = test.in test1.out test2.out
diff --git a/testsuite/symbols-test b/testsuite/symbols-test
new file mode 100755 (executable)
index 0000000..d6bd484
--- /dev/null
@@ -0,0 +1,18 @@
+#! /bin/sh
+
+# Check that all exported symbols use the nettle prefix.
+
+if [ -z "$srcdir" ] ; then
+  srcdir=`pwd`
+fi
+
+nm ../libnettle.a | grep ' [DRT] ' | egrep -v ' _?nettle_|memxor' \
+    | sort -k3 > test1.out
+
+if [ -s test1.out ] ; then
+    echo Exported symbols lacking the nettle prefix:
+    cat test1.out
+    exit 1
+else
+    exit 0
+fi