perl script get stuck before creating Junit xml using TAP::Harness::JUnit -


i need help.

i have main script uses tap::harness::junit running tests. tests runs , xml created successfully. when i'm trying run test (called big_test) big output data, after test finish running (takes 1 hour), main.t script stuck , xmlfile never created.

in main.t defined:

my $harness = tap::harness::junit->new({             formatter_class => 'tap::formatter::junit',         xmlfile     => "$new_xml_name",             merge           => 1,             normalize       => 1,             color           => 1,             timer       => 1,             show_count  => 1,             ignore_exit => 1,             }); 

does have advice? thanks


Comments

Popular posts from this blog

Why can rails not find a route created by a helper? -

javascript - jquery or ashx not working -

opencv - DataType<cv::detail::deriv_type>::depth what is it used for -