Re: Smoke [5.11.0] 33500 FAIL(F) MSWin32 WinXP/.Net SP2 (x86/2 cpu)
[p5sagit/p5-mst-13.2.git] / ext / Win32 / t / GetCurrentThreadId.t
1 use strict;
2 use Config qw(%Config);
3 use Test;
4 use Win32;
5
6 plan tests => 1;
7
8 # This test relies on the implementation detail that the fork() emulation
9 # uses the negative value of the thread id as a pseudo process id.
10 if ($Config{ccflags} =~ /PERL_IMPLICIT_SYS/) {
11     if (my $pid = fork) {
12         waitpid($pid, 0);
13         exit 0;
14     }
15     ok(-$$, Win32::GetCurrentThreadId());
16 } else {
17 # here we just want to see something.
18     ok(Win32::GetCurrentThreadId() > 0);
19 }