Browse Source

test: ignore undefined symbols for API

Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Bernhard Reutner-Fischer 13 years ago
parent
commit
46aa707fc5
1 changed files with 3 additions and 2 deletions
  1. 3 2
      test/API/tst-API.sh

+ 3 - 2
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