File: libqat-dev

package info (click to toggle)
qatlib 26.02.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 15,796 kB
  • sloc: ansic: 136,305; asm: 974; makefile: 407; sh: 401
file content (19 lines) | stat: -rw-r--r-- 426 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh
# autopkgtest check: Build and run a program against libqat-dev, to verify that the
# headers are installed correctly
# (C) 2024 Canonical Ltd.
# Author: Hector Cao <hector.cao@canonical.com>

set -e

export srcdir="$(pwd)/tests"
export builddir="$(pwd)/nonexist-builddir"

# check if library is available
if [ ! -f /usr/lib/x86_64-linux-gnu/libqat.so ]
then
	echo "QAT library missing"
	exit 1
fi

echo "tests: OK"