qpdf/pkg-test
Jay Berkenbilt 1393f56e7c 11.0.0: Fix typos in comments in pkg-test 2022-09-10 11:33:18 -04:00
..
CMakeLists.txt Add installed package smoke tests in pkg-test directory 2022-03-18 19:53:18 -04:00
README.md Add installed package smoke tests in pkg-test directory 2022-03-18 19:53:18 -04:00
qpdf-version.cc Strengthen pkg-test 2022-09-10 09:44:29 -04:00
run-all Add installed package smoke tests in pkg-test directory 2022-03-18 19:53:18 -04:00
test-cli Strengthen pkg-test 2022-09-10 09:44:29 -04:00
test-cmake 11.0.0: Fix typos in comments in pkg-test 2022-09-10 11:33:18 -04:00
test-pkg-config 11.0.0: Fix typos in comments in pkg-test 2022-09-10 11:33:18 -04:00

README.md

Tests for installed packages

The files in this directory are called by autopkgtest in the debian package but can be used by any packager to verify installed packages. Each test-* script should be run from the top of the source tree and takes an empty directory as its single argument. The test passes if the script exits with a zero exit status. Note that these tests write to stderr because they use set -x in the shell.

On a GNU/Linux system, you can run ./pkg-test/run-all from the top-level directory to run all the tests. For example:

cmake -S . -B build
cmake --build build -j$(nproc)
DESTDIR=/tmp/inst cmake --install build
env PKG_CONFIG_PATH=/tmp/inst/usr/local/lib/pkgconfig \
    CMAKE_PREFIX_PATH=/tmp/inst/usr/local \
   ./pkg-test/run-all