From 46aa707fc50415e90b0860258f4f5d78b7b96a7b Mon Sep 17 00:00:00 2001
From: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Date: Sun, 29 Jan 2012 15:10:01 +0100
Subject: test: ignore undefined symbols for API

Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
---
 test/API/tst-API.sh | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

(limited to 'test/API')

diff --git a/test/API/tst-API.sh b/test/API/tst-API.sh
index 38a339945..3d0302c8e 100755
--- a/test/API/tst-API.sh
+++ b/test/API/tst-API.sh
@@ -8,8 +8,9 @@ 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}'; \
+	$AWK '
+/^[[:space:]]*[[:digit:]]/ { if ($8 != "UND") print $NF; }
+'; \
 	done | sort | uniq > $uclibc_out
 for code in $cod; do cat $code.$std.syms; done | sort | uniq > $glibc_out
 result=0
-- 
cgit v1.2.3