Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Don't clobber test exit code at cleanup in LDAP/Kerberors tests
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>
Sun, 7 Apr 2024 17:21:27 +0000 (20:21 +0300)
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>
Sun, 7 Apr 2024 17:23:22 +0000 (20:23 +0300)
If the test script die()d before running the first test, the whole test
was interpreted as SKIPped rather than failed. The PostgreSQL::Cluster
module got this right.

Backpatch to all supported versions.

Discussion: https://www.postgresql.org/message-id/fb898a70-3a88-4629-88e9-f2375020061d@iki.fi

src/test/kerberos/t/001_auth.pl
src/test/ldap/t/001_auth.pl

index 5d7add9d9e77f8b3cfed23fb71014b799289dc4b..c27b732675db7153d6baef0eeb8aa48cd47135af 100644 (file)
@@ -188,7 +188,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";
index 8138aba1ed23436ecc9d2fd893ab5baabcd8014d..67dfa7ecce2f9ead3dddce5bbdd377942cf66360 100644 (file)
@@ -150,7 +150,12 @@ system_or_bail $slapd, '-f', $slapd_conf,'-s0', '-h', "$ldap_url $ldaps_url";
 
 END
 {
+   # take care not to change the script's exit value
+   my $exit_code = $?;
+
    kill 'INT', `cat $slapd_pidfile` if -f $slapd_pidfile;
+
+   $? = $exit_code;
 }
 
 append_to_file($ldap_pwfile, $ldap_rootpw);