summaryrefslogtreecommitdiffstats
path: root/src/test/kerberos/t
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-21 05:05:20 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-21 05:05:20 +0000
commita14b88819a8a22da4f5abb19a3b1b61aebb10a7c (patch)
tree45f36cde15c9ff8c45d9efbaa7b02426ca984121 /src/test/kerberos/t
parentAdding debian version 15.6-0+deb12u1. (diff)
downloadpostgresql-15-a14b88819a8a22da4f5abb19a3b1b61aebb10a7c.tar.xz
postgresql-15-a14b88819a8a22da4f5abb19a3b1b61aebb10a7c.zip
Merging upstream version 15.7.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/kerberos/t')
-rw-r--r--src/test/kerberos/t/001_auth.pl7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/test/kerberos/t/001_auth.pl b/src/test/kerberos/t/001_auth.pl
index 64117c2..f2253e5 100644
--- a/src/test/kerberos/t/001_auth.pl
+++ b/src/test/kerberos/t/001_auth.pl
@@ -184,7 +184,12 @@ system_or_bail $krb5kdc, '-P', $kdc_pidfile;
END
{
- kill 'INT', `cat $kdc_pidfile` if -f $kdc_pidfile;
+ # take care not to change the script's exit value
+ my $exit_code = $?;
+
+ kill 'INT', `cat $kdc_pidfile` if defined($kdc_pidfile) && -f $kdc_pidfile;
+
+ $? = $exit_code;
}
note "setting up PostgreSQL instance";