From d61066fcfe7f00843c4660182ea38ba3a5e41803 Mon Sep 17 00:00:00 2001 From: Bernhard Reutner-Fischer Date: Tue, 13 Apr 2010 16:14:14 +0200 Subject: test: add API test part1; Needs improvement: Think about a sensible way to map feature sets to the mandated syms. Our LEGACY stuff maps to OB, OBXSI for example. A "normal" config should satisfy the BASE (i.e. $foo.SUSv4.syms) Signed-off-by: Bernhard Reutner-Fischer --- test/API/tst-API.sh | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 test/API/tst-API.sh (limited to 'test/API/tst-API.sh') diff --git a/test/API/tst-API.sh b/test/API/tst-API.sh new file mode 100644 index 000000000..38a339945 --- /dev/null +++ b/test/API/tst-API.sh @@ -0,0 +1,16 @@ +#!/bin/sh + +std="$1" +shift +cod="$*" + +result=0 + +for l in $top_builddir/lib/lib*-*.so; do \ + readelf -D -W -s $l | \ + egrep -v "(UND|LOCAL|^Symbol table for image:|^[[:space:]]*Num[[:space:]])" | \ + $AWK '{print $NF}'; \ + done | sort | uniq > $uclibc_out +for code in $cod; do cat $code.$std.syms; done | sort | uniq > $glibc_out +result=0 +exit $result -- cgit v1.2.3