From 3f0c901e744c87f6e00744e63afe0242d5fe45e9 Mon Sep 17 00:00:00 2001 From: Andres Freund Date: Tue, 20 Sep 2022 18:11:10 -0700 Subject: [PATCH] Use \b in one more PG_TEST_EXTRA check, oversight in c3382a3c3cc Per off-list report from Thomas Munro. --- src/test/ssl/t/001_ssltests.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/ssl/t/001_ssltests.pl b/src/test/ssl/t/001_ssltests.pl index c77bc9ef500..efe5634fff2 100644 --- a/src/test/ssl/t/001_ssltests.pl +++ b/src/test/ssl/t/001_ssltests.pl @@ -17,7 +17,7 @@ if ($ENV{with_ssl} ne 'openssl') { plan skip_all => 'OpenSSL not supported by this build'; } -elsif ($ENV{PG_TEST_EXTRA} !~ /ssl/) +elsif ($ENV{PG_TEST_EXTRA} !~ /\bssl\b/) { plan skip_all => 'Potentially unsafe test SSL not enabled in PG_TEST_EXTRA'; } -- 2.30.2