summaryrefslogtreecommitdiff
path: root/cpan/Test-Simple/t/Legacy/fork.t
diff options
context:
space:
mode:
Diffstat (limited to 'cpan/Test-Simple/t/Legacy/fork.t')
-rw-r--r--cpan/Test-Simple/t/Legacy/fork.t22
1 files changed, 0 insertions, 22 deletions
diff --git a/cpan/Test-Simple/t/Legacy/fork.t b/cpan/Test-Simple/t/Legacy/fork.t
deleted file mode 100644
index da7d4646ad..0000000000
--- a/cpan/Test-Simple/t/Legacy/fork.t
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/usr/bin/perl -w
-
-BEGIN {
- if( $ENV{PERL_CORE} ) {
- chdir 't';
- @INC = '../lib';
- }
-}
-
-use Test::CanFork;
-
-use Test::More tests => 1;
-
-my $pid = fork;
-if( $pid ) { # parent
- pass("Only the parent should process the ending, not the child");
- waitpid($pid, 0);
-}
-else {
- exit; # child
-}
-