diff options
author | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2015-01-13 22:50:58 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2015-01-13 22:50:58 +0100 |
commit | 9b723c4ea768f71fc0bc69ba467c6240d18adf35 (patch) | |
tree | 84d6e4e61f569ef30c1ff526f75d36e262b32f8c /test/API/tst-API.sh | |
parent | 6252572a624c5bc65a6ed3a5778808e84510a8f7 (diff) |
remove API dir. tests are disabled anyway.
Diffstat (limited to 'test/API/tst-API.sh')
-rwxr-xr-x | test/API/tst-API.sh | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/test/API/tst-API.sh b/test/API/tst-API.sh deleted file mode 100755 index 3d0302c8e..000000000 --- a/test/API/tst-API.sh +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh - -std="$1" -shift -cod="$*" - -result=0 - -for l in $top_builddir/lib/lib*-*.so; do \ - readelf -D -W -s $l | \ - $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 -exit $result |