diff options
author | William Hubbs <w.d.hubbs@gmail.com> | 2013-09-22 20:23:56 -0500 |
---|---|---|
committer | William Hubbs <w.d.hubbs@gmail.com> | 2013-09-26 22:18:21 -0500 |
commit | de88aff0a839844526ae262f8961ec4372fed238 (patch) | |
tree | 74c98ab41e7a03456d3c2a52c8cfb2fe3d39b915 /src/test/runtests.sh | |
parent | 9e989227ab51cd880405958a0b11c63fa461ea7e (diff) |
Make einfo routines private
The libeinfo library has no consumers other than OpenRC, so there is no
reason for it to be maintained as a library. The einfo routines are now
an object that links with the rc binary.
Diffstat (limited to 'src/test/runtests.sh')
-rwxr-xr-x | src/test/runtests.sh | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/src/test/runtests.sh b/src/test/runtests.sh index 5a87c847..b5b053fa 100755 --- a/src/test/runtests.sh +++ b/src/test/runtests.sh @@ -3,8 +3,6 @@ top_srcdir=${top_srcdir:-../..} . ${top_srcdir}/test/setup_env.sh -libeinfo_srcdir="${srcdir}/../libeinfo" -libeinfo_builddir="${builddir}/../libeinfo" librc_srcdir="${srcdir}/../librc" librc_builddir="${builddir}/../librc" rc_srcdir="${srcdir}/../rc" @@ -20,22 +18,6 @@ checkit() { ret=0 -ebegin "Checking exported symbols in libeinfo.so (data)" -checkit einfo.data $( -readelf -Ws ${libeinfo_builddir}/libeinfo.so \ - | awk '$4 == "OBJECT" && $5 == "GLOBAL" && $7 != "UND" {print $NF}' \ - | LC_ALL=C sort -u -) - -ebegin "Checking exported symbols in libeinfo.so (functions)" -checkit einfo.funcs $( -readelf -Ws ${libeinfo_builddir}/libeinfo.so \ - | awk '$4 == "FUNC" && $5 == "GLOBAL" && $7 != "UND" {print $NF}' \ - | LC_ALL=C sort -u \ - | egrep -v \ - -e '^_(init|fini)$' -) - ebegin "Checking exported symbols in librc.so (data)" checkit rc.data $( readelf -Ws ${librc_builddir}/librc.so \ |