diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-04 12:15:08 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-04 12:15:08 +0000 |
commit | c8f4a18517306b8e4f0c467df5c021593c47e550 (patch) | |
tree | a485b32d21dc418a66ef7fc9ef93ca29fed61573 /debian/tests/installcheck | |
parent | Adding upstream version 14.5. (diff) | |
download | postgresql-14-c8f4a18517306b8e4f0c467df5c021593c47e550.tar.xz postgresql-14-c8f4a18517306b8e4f0c467df5c021593c47e550.zip |
Adding debian version 14.5-3.debian/14.5-3debian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/tests/installcheck')
-rwxr-xr-x | debian/tests/installcheck | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/debian/tests/installcheck b/debian/tests/installcheck new file mode 100755 index 0000000..08e5055 --- /dev/null +++ b/debian/tests/installcheck @@ -0,0 +1,42 @@ +#!/bin/sh + +set -eux + +SOURCE=$(dpkg-parsechangelog -SSource) +MAJOR=${SOURCE#*-} +top_srcdir=$PWD + +cd src/test/regress + +# compile regress.so +make -f $top_srcdir/debian/tests/Makefile.regress PG_CONFIG=/usr/lib/postgresql/$MAJOR/bin/pg_config with_llvm=no + +# tell regression files that regress.so is not installed +sed -i -e "s:@libdir@/regress:$PWD/regress:" input/*.source output/*.source + +# when root, execute testsuite as user postgres since it insists on wiping the tablespace directory +if [ $(id -u) = 0 ]; then + SU="su postgres" +else + SU="sh" +fi + +$SU <<EOF +set -eux + +# create tablespace and results directories +OUTPUT=\$(mktemp -d /tmp/regress.XXXXXX) +trap "rm -rf \$OUTPUT" EXIT + +# run the regression tests +if ! pg_virtualenv -v $MAJOR \ + /usr/lib/postgresql/$MAJOR/lib/pgxs/src/test/regress/pg_regress \ + --schedule=parallel_schedule \ + --make-testtablespace-dir \ + --outputdir=\$OUTPUT \ + --temp-config=/usr/share/postgresql-common/server/test-with-jit.conf + then + head -100 \$OUTPUT/regression.diffs + exit 1 +fi +EOF |