Bug 25501: Supress warnings on installing translation
[koha.git] / t / Koha / sleep.pl
blob009b4034dcfe9c145f6eaeaba03154872933b83b
1 #!/usr/bin/perl
3 use Modern::Perl;
5 use Koha::Script;
6 use Fcntl qw(:flock);
7 use Try::Tiny;
9 # # Lock execution
10 my $script = Koha::Script->new({ script => 'sleep.pl' });
12 $script->lock_exec;
14 # Sleep for a while, we need to force the concurrent access to the
15 # lock file
16 sleep 2;
18 # Normal exit