From: Dylan William Hardison Date: Fri, 26 May 2017 15:19:08 +0000 (-0400) Subject: fix 901-secure-mail-loop.t test X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=52376616db4118116d58d0004cfc47a2e07a5766;p=thirdparty%2Fbugzilla.git fix 901-secure-mail-loop.t test --- 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 => "@",