From: Andres Freund Date: Wed, 21 Sep 2022 01:11:10 +0000 (-0700) Subject: Use \b in one more PG_TEST_EXTRA check, oversight in c3382a3c3cc X-Git-Tag: REL_16_BETA1~1660 X-Git-Url: http://git.postgresql.org/gitweb/?a=commitdiff_plain;h=3f0c901e744c87f6e00744e63afe0242d5fe45e9;p=postgresql.git Use \b in one more PG_TEST_EXTRA check, oversight in c3382a3c3cc Per off-list report from Thomas Munro. --- 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'; }