fpc/tests/webtbs/tw6767.pp
Jonas Maebe 3c2fc7b226 * fixed test
git-svn-id: trunk@9241 -
2007-11-13 20:19:06 +00:00

21 lines
400 B
ObjectPascal

{ %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.