mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-12 13:42:58 +02:00
18 lines
303 B
ObjectPascal
18 lines
303 B
ObjectPascal
program TestFpLldb;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
{$IFDEF UNIX} cthreads, {$ENDIF}
|
|
TestDbgControlForm, Interfaces, Forms, GuiTestRunner, TestWatches,
|
|
FpLldbDebugger, TestBase;
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TGuiTestRunner, TestRunner);
|
|
Application.Run;
|
|
end.
|
|
|