From 52376616db4118116d58d0004cfc47a2e07a5766 Mon Sep 17 00:00:00 2001 From: Dylan William Hardison Date: Fri, 26 May 2017 11:19:08 -0400 Subject: fix 901-secure-mail-loop.t test --- t/901-secure-mail-loop.t | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/t/901-secure-mail-loop.t b/t/901-secure-mail-loop.t index bfecb82c7..1431b9fdd 100644 --- a/t/901-secure-mail-loop.t +++ b/t/901-secure-mail-loop.t @@ -7,6 +7,7 @@ use strict; use warnings; use 5.10.1; +use lib qw( . lib local/lib/perl5 ); use Test::More tests => 1; use Crypt::OpenPGP; @@ -15,7 +16,7 @@ my $pubring = new Crypt::OpenPGP::KeyRing(Data => PUBLIC_KEY()); my $pgp = new Crypt::OpenPGP(PubRing => $pubring); { local $SIG{ALRM} = sub { fail("stuck in a loop"); exit; }; - alarm(5); + alarm(60); my $encrypted = $pgp->encrypt( Data => "hello, world", Recipients => "@", -- cgit v1.2.3-24-g4f1b