File: run_abi_test

package info (click to toggle)
apt 1.0.9.8.4
  • links: PTS, VCS
  • area: main
  • in suites: jessie
  • size: 15,080 kB
  • ctags: 5,307
  • sloc: cpp: 50,972; sh: 12,111; xml: 4,130; makefile: 855; perl: 209; python: 28
file content (22 lines) | stat: -rwxr-xr-x 692 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/sh

# ensure we are in the abibreak subdirectory
cd "$(readlink -f $(dirname $0))"

if [ ! -d ../build ]; then
	echo "../build missing, did you run make?"
	exit 1
fi

if [ ! -x "$(which abi-compliance-checker 2>/dev/null )" ]; then
	echo "Please install the 'abi-compliance-checker' package"
	exit 1
fi

LIBPATH=$(find /usr/lib/$(dpkg-architecture -qDEB_HOST_MULTIARCH) -type f -regex '.*/libapt-\(pkg\|inst\)\.so\..*' -printf %p\\\\n)
sed s#@installed_libapt@#$LIBPATH# apt_installed.xml.in > apt_installed.xml

BUILDPATH=$(readlink -f ../build)
sed s#@build_path@#$BUILDPATH# apt_build.xml.in > apt_build.xml

abi-compliance-checker -l apt -d1 apt_installed.xml -d2 apt_build.xml $@