]>
git.saurik.com Git - apt.git/blob - abicheck/run_abi_test
3 if [ ! -d ..
/build
]; then
4 echo "../build missing, did you run make?"
8 if [ ! -x "$(which abi-compliance-checker 2>/dev/null )" ]; then
9 echo "Please install the 'abi-compliance-checker' package"
13 LIBPATH
=$(find /usr/lib/ -type f -name "libapt-*.so.*" -printf %p\\\\n)
14 sed s
#@installed_libapt@#$LIBPATH# apt_installed.xml.in > apt_installed.xml
16 BUILDPATH
=$(readlink -f ../build)
17 sed s
#@build_path@#$BUILDPATH# apt_build.xml.in > apt_build.xml
19 abi
-compliance-checker -l apt
-d1 apt_installed.xml
-d2 apt_build.xml