From ee91363e6620c0bdc9dcb31c02266905fca09b49 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 15 Apr 2024 20:30:57 +0200 Subject: Adding debian version 1:3.11.1-1. Signed-off-by: Daniel Baumann --- debian/tests/control | 9 +++++++++ debian/tests/test-libpci | 39 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 48 insertions(+) create mode 100644 debian/tests/control create mode 100755 debian/tests/test-libpci (limited to 'debian/tests') diff --git a/debian/tests/control b/debian/tests/control new file mode 100644 index 0000000..f836fa7 --- /dev/null +++ b/debian/tests/control @@ -0,0 +1,9 @@ +Tests: + test-libpci +Restrictions: + allow-stderr + superficial +Depends: + build-essential, + libpci-dev, + pkgconf, diff --git a/debian/tests/test-libpci b/debian/tests/test-libpci new file mode 100755 index 0000000..1951e66 --- /dev/null +++ b/debian/tests/test-libpci @@ -0,0 +1,39 @@ +#!/bin/sh +# Copyright © 2020 Collabora Ltd. +# Copyright © 2020 Guillem Jover +# 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 <test-libpci.c +#include + +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 -- cgit v1.2.3