From a54fb06cba16ea0a863872611cc5576876cca6ec Mon Sep 17 00:00:00 2001 From: Andreas Karlsson Date: Tue, 29 Jul 2025 17:13:44 +0200 Subject: [PATCH] Fix our poll_start() helper by including usleep() The helper crashed if it failed on the first attempt due to a missing dependency. --- contrib/pg_tde/t/pgtde.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/contrib/pg_tde/t/pgtde.pm b/contrib/pg_tde/t/pgtde.pm index eb5c02b24ec..8f02dce1515 100644 --- a/contrib/pg_tde/t/pgtde.pm +++ b/contrib/pg_tde/t/pgtde.pm @@ -6,6 +6,7 @@ use PostgreSQL::Test::Utils; use File::Basename; use File::Compare; use Test::More; +use Time::HiRes qw(usleep); # Expected .out filename of TAP testcase being executed. These are already part of repo under t/expected/*. our $expected_filename_with_path;