summaryrefslogtreecommitdiff
path: root/cpan/Test-Harness/t/nofork-mux.t
blob: 1dba20d47093a3a3a6efeb7bf130d179163b8efe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/perl -w

BEGIN {
    if ( $ENV{PERL_CORE} ) {
        chdir 't';
        @INC = ( '../lib', '../ext/Test-Harness/t/lib' );
    }
    else {
        use lib 't/lib';
    }
}

use strict;

use NoFork;
require(
    ( $ENV{PERL_CORE} ? '../ext/Test-Harness/' : '' ) . 't/multiplexer.t' );