https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36736
--- Comment #23 from Tomás Cohen Arazi <[email protected]> --- It seems I forgot to add my last attempt yesterday: ``` index 460b710a4e5..58ffc9aadac 100755 --- a/t/db_dependent/Koha/Plugins/Plugins.t +++ b/t/db_dependent/Koha/Plugins/Plugins.t @@ -322,9 +322,13 @@ subtest 'Koha::Plugin::Test' => sub { plan tests => 1; - use DDP; - my $job = Koha::BackgroundJob::TestBackgroundJob->new; - $job->process; + # Launch the sleep script + my $pid = fork(); + if ( $pid == 0 ) { + use DDP; + my $job = Koha::BackgroundJob::TestBackgroundJob->new; + $job->process; + } ``` which didn't work either :-P -- You are receiving this mail because: You are watching all bug changes. _______________________________________________ Koha-bugs mailing list [email protected] https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
