fpc/tests/utils/testsuite/testsuite.pp
michael 32f74d23f1 * Move to postgresql
git-svn-id: trunk@28359 -
2014-08-10 14:58:11 +00:00

20 lines
260 B
ObjectPascal

{$mode objfpc}
{$h+}
program testsuite;
uses utests, tresults;
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.