Author: thatsafunnyname
Date: Wed Mar 25 09:10:48 2009
New Revision: 722
Modified:
trunk/t/test30-fork-0.t
Log:
Skip all fork() tests if on VMS
Modified: trunk/t/test30-fork-0.t
==============================================================================
--- trunk/t/test30-fork-0.t (original)
+++ trunk/t/test30-fork-0.t Wed Mar 25 09:10:48 2009
@@ -3,6 +3,6 @@
use lib qw(t/lib);
use NYTProfTest;
-plan skip_all => "doesn't work with fork() emulation" if $^O eq "MSWin32";
+plan skip_all => "doesn't work with fork() emulation" if (($^O
eq "MSWin32") || ($^O eq 'VMS'));
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]
-~----------~----~----~----~------~----~------~--~---