diff options
Diffstat (limited to 'src/test/ssl/ServerSetup.pm')
-rw-r--r-- | src/test/ssl/ServerSetup.pm | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/test/ssl/ServerSetup.pm b/src/test/ssl/ServerSetup.pm index ced279c31b9..1cd3badaa1d 100644 --- a/src/test/ssl/ServerSetup.pm +++ b/src/test/ssl/ServerSetup.pm @@ -47,6 +47,7 @@ sub test_connect_ok ]; command_ok($cmd, $test_name); + return; } sub test_connect_fails @@ -60,6 +61,7 @@ sub test_connect_fails ]; command_fails_like($cmd, $expected_stderr, $test_name); + return; } # Copy a set of files, taking into account wildcards @@ -75,6 +77,7 @@ sub copy_files copy($orig_file, "$dest/$base_file") or die "Could not copy $orig_file to $dest"; } + return; } sub configure_test_server_for_ssl @@ -130,6 +133,8 @@ sub configure_test_server_for_ssl # Change pg_hba after restart because hostssl requires ssl=on configure_hba_for_ssl($node, $serverhost, $authmethod); + + return; } # Change the configuration to use given server cert file, and reload @@ -150,6 +155,7 @@ sub switch_server_cert close $sslconf; $node->restart; + return; } sub configure_hba_for_ssl @@ -173,4 +179,7 @@ sub configure_hba_for_ssl print $hba "hostssl certdb all ::1/128 cert\n"; close $hba; + return; } + +1;
\ No newline at end of file |