[ Avaa Bypassed ]




Upload:

Command:

hmhc3928@18.222.91.173: ~ $
#!/usr/bin/perl -w
use strict;
use warnings;
use Config;
use IO::Pipe;
use Test::Builder;
use Test::More;

my $Can_Fork = $Config{d_fork} ||
               (($^O eq 'MSWin32' || $^O eq 'NetWare') and
                $Config{useithreads} and
                $Config{ccflags} =~ /-DPERL_IMPLICIT_SYS/
               );

if( !$Can_Fork ) {
    plan 'skip_all' => "This system cannot fork";
}
else {
    plan 'tests' => 1;
}

subtest 'fork within subtest' => sub {
    plan tests => 2;

    my $pipe = IO::Pipe->new;
    my $pid = fork;
    defined $pid or plan skip_all => "Fork not working";

    if ($pid) {
        $pipe->reader;
        my $child_output = do { local $/ ; <$pipe> };
        waitpid $pid, 0;

        is $?, 0, 'child exit status';
        like $child_output, qr/^[\s#]+Child Done\s*\z/, 'child output';
    } 
    else {
        $pipe->writer;

        # Force all T::B output into the pipe, for the parent
        # builder as well as the current subtest builder.
        no warnings 'redefine';
        *Test::Builder::output         = sub { $pipe };
        *Test::Builder::failure_output = sub { $pipe };
        *Test::Builder::todo_output    = sub { $pipe };
        
        diag 'Child Done';
        exit 0;
    }
};


Filemanager

Name Type Size Permission Actions
args.t File 328 B 0644
basic.t File 5.19 KB 0644
die.t File 531 B 0644
do.t File 274 B 0644
exceptions.t File 1.81 KB 0644
for_do_t.test File 112 B 0644
fork.t File 1.22 KB 0644
implicit_done.t File 479 B 0644
line_numbers.t File 3.59 KB 0644
plan.t File 1.34 KB 0644
predicate.t File 4.38 KB 0644
singleton.t File 712 B 0644
todo.t File 5.27 KB 0644
wstat.t File 369 B 0644