diff options
author | Alexander Korotkov | 2023-10-17 05:11:40 +0000 |
---|---|---|
committer | Alexander Korotkov | 2023-10-17 05:11:40 +0000 |
commit | 6fcaeb0ea26b963b0ca13ce6078df4c2c3135aa3 (patch) | |
tree | d222384bdda5a3ffce739058c9e35ed938db04c4 | |
parent | 79243de13f4d251309d7831744e98d6b965ed4d6 (diff) |
Run 006_login_trigger.pl only with Unix-domain sockets
Per report from buildfarm member drongo.
Reported-by: Alexander Lakhin
-rw-r--r-- | src/test/authentication/t/006_login_trigger.pl | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/test/authentication/t/006_login_trigger.pl b/src/test/authentication/t/006_login_trigger.pl index 2c5d4bf33f..24beb0a0b2 100644 --- a/src/test/authentication/t/006_login_trigger.pl +++ b/src/test/authentication/t/006_login_trigger.pl @@ -10,6 +10,11 @@ use warnings; use PostgreSQL::Test::Cluster; use PostgreSQL::Test::Utils; use Test::More; +if (!$use_unix_sockets) +{ + plan skip_all => + "authentication tests cannot run without Unix-domain sockets"; +} # Execute a psql command and compare its output towards given regexps sub psql_command |