diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 09:24:33 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 09:24:33 +0000 |
commit | 2459d9471afbe2b019744f4335f66025b73965de (patch) | |
tree | cc611a48837b355ff21f8e3715fab4f93e29ac43 /debian/tests | |
parent | Adding upstream version 1:3.9.0. (diff) | |
download | pciutils-2459d9471afbe2b019744f4335f66025b73965de.tar.xz pciutils-2459d9471afbe2b019744f4335f66025b73965de.zip |
Adding debian version 1:3.9.0-4.debian/1%3.9.0-4debian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | debian/tests/control | 3 | ||||
-rwxr-xr-x | debian/tests/test-libpci | 39 |
2 files changed, 42 insertions, 0 deletions
diff --git a/debian/tests/control b/debian/tests/control new file mode 100644 index 0000000..63aab16 --- /dev/null +++ b/debian/tests/control @@ -0,0 +1,3 @@ +Tests: test-libpci +Restrictions: allow-stderr superficial +Depends: build-essential, libpci-dev, pkg-config diff --git a/debian/tests/test-libpci b/debian/tests/test-libpci new file mode 100755 index 0000000..12aaf0d --- /dev/null +++ b/debian/tests/test-libpci @@ -0,0 +1,39 @@ +#!/bin/sh +# Copyright © 2020 Collabora Ltd. +# Copyright © 2020 Guillem Jover <guillem@debian.org> +# SPDX-License-Identifier: GPL-2.0-or-later + +set -e +set -u +set -x + +if [ -n "${DEB_HOST_GNU_TYPE:-}" ]; then + CC="$DEB_HOST_GNU_TYPE-gcc" + PKG_CONFIG="$DEB_HOST_GNU_TYPE-pkg-config" +else + CC=gcc + PKG_CONFIG=pkg-config +fi + +CFLAGS="-Wall -g -O2 -D_GNU_SOURCE" +LIBS=$($PKG_CONFIG --cflags --libs libpci) + +cd "$AUTOPKGTEST_TMP" + +cat <<EOF >test-libpci.c +#include <pci/pci.h> + +int main(void) +{ + struct pci_access *a; + a = pci_alloc(); + pci_init(a); + pci_cleanup(a); + return 0; +} +EOF + +# Test building minimal code against the installed library. +$CC $CFLAGS -o test-dynamic test-libpci.c $LIBS + test -x ./test-dynamic +./test-dynamic |