fpc/tests/webtbs/tw6767.pp
2016-07-13 15:21:23 +00:00

22 lines
425 B
ObjectPascal

{%skiptarget=$nothread }
{ %OPT=-gl -gh }
program t3;
uses
{$ifdef unix}
cthreads,
{$endif}
Sysutils,uw6767;
var
CheckThread : TCheckConnThread;
begin
HaltOnNotReleased := true;
CheckThread := TCheckConnThread.Create(false);
CheckThread.Terminate;
{ not really clean, but waitfor is not possible since the thread may }
{ already have freed itself }
sleep(500);
end.