mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-06-01 03:52:35 +02:00
18 lines
315 B
ObjectPascal
18 lines
315 B
ObjectPascal
program TestFpGdbmi;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
TestDbgControlForm,
|
|
Interfaces, Forms, GuiTestRunner, TestWatches, FpGdbmiDebugger, TestBase;
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
TestBase.TestGdbClass := TFpGDBMIDebugger;
|
|
Application.Initialize;
|
|
Application.CreateForm(TGuiTestRunner, TestRunner);
|
|
Application.Run;
|
|
end.
|
|
|