This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Added porting tests for CUSTOMIZED files
[perl5.git] / t / op / getpid.t
1 #!perl -w
2
3 # Tests if $$ and getppid return consistent values across threads
4
5 BEGIN {
6     chdir 't' if -d 't';
7     @INC = qw(../lib);
8     require './test.pl';
9 }
10
11 use strict;
12 use Config;
13
14 BEGIN {
15     skip_all_without_config(qw(useithreads d_getppid));
16     skip_all_if_miniperl("no dynamic loading on miniperl, no threads");
17     eval 'use threads; use threads::shared';
18     plan tests => 3;
19     if ($@) {
20         fail("unable to load thread modules");
21     }
22     else {
23         pass("thread modules loaded");
24     }
25 }
26
27 my ($pid, $ppid) = ($$, getppid());
28 my $pid2 : shared = 0;
29 my $ppid2 : shared = 0;
30
31 new threads( sub { ($pid2, $ppid2) = ($$, getppid()); } ) -> join();
32
33 is($pid,  $pid2,  'pids');
34 is($ppid, $ppid2, 'ppids');