Revision: 877 Author: tim.bunce Date: Sat Oct 24 07:17:25 2009 Log: Skip test60-subname for older perls because the call from example_xsub to will_die, made via call_sv(), doesn't get profiled on older perls
http://code.google.com/p/perl-devel-nytprof/source/detail?r=877 Modified: /trunk/t/test60-subname.t ======================================= --- /trunk/t/test60-subname.t Fri Feb 6 01:47:28 2009 +++ /trunk/t/test60-subname.t Sat Oct 24 07:17:25 2009 @@ -3,4 +3,9 @@ use lib qw(t/lib); use NYTProfTest; +# XXX needed because the call from example_xsub to will_die, +# made via call_sv() doesn't get profiled on older perls +plan skip_all => "needs perl >= 5.8.9 or >= 5.10.1" + if $] < 5.008009 or $] eq "5.010000"; + run_test_group; --~--~---------~--~----~------------~-------~--~----~ You've received this message because you are subscribed to the Devel::NYTProf Development User group. Group hosted at: http://groups.google.com/group/develnytprof-dev Project hosted at: http://perl-devel-nytprof.googlecode.com CPAN distribution: http://search.cpan.org/dist/Devel-NYTProf To post, email: [email protected] To unsubscribe, email: [email protected] -~----------~----~----~----~------~----~------~--~---
