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