diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2012-01-29 15:10:01 +0100 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2012-01-29 15:10:01 +0100 |
commit | 46aa707fc50415e90b0860258f4f5d78b7b96a7b (patch) | |
tree | 7f71d2e815255ca2bda07f7549f135dbd9232212 /test/API | |
parent | 4891374bc3b29fc9e46f223aedf4c78e72c654e4 (diff) |
test: ignore undefined symbols for API
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'test/API')
-rwxr-xr-x | test/API/tst-API.sh | 5 |
1 files changed, 3 insertions, 2 deletions
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 |