From 6fcaeb0ea26b963b0ca13ce6078df4c2c3135aa3 Mon Sep 17 00:00:00 2001 From: Alexander Korotkov Date: Tue, 17 Oct 2023 08:11:40 +0300 Subject: [PATCH] Run 006_login_trigger.pl only with Unix-domain sockets Per report from buildfarm member drongo. Reported-by: Alexander Lakhin --- src/test/authentication/t/006_login_trigger.pl | 5 +++++ 1 file changed, 5 insertions(+) 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 -- 2.39.5