fpc/tests/utils/testsuite/testsuite.pp
peter c895e05100 * remove cmem
git-svn-id: trunk@568 -
2005-07-03 13:51:12 +00:00

20 lines
250 B
ObjectPascal

{$mode objfpc}
{$h+}
program testsuite;
uses utests;
Var
App : TTestSuite;
begin
App:=TTestSuite.Create(nil);
Try
App.Title:='Free Pascal Compiler Test Suite Results';
App.Initialize;
App.Run;
Finally
App.Free;
end;
end.