mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-06-23 11:48:32 +02:00
19 lines
374 B
ObjectPascal
19 lines
374 B
ObjectPascal
program TestGdbmi;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
TestDbgControlForm, // use first
|
|
Interfaces, Forms, GuiTestRunner, TestGdbType, TestInstructionQueue,
|
|
TestDisAss, TestException, Testwatches, TestBreakPoint,
|
|
TestEnvironment, TestArgV, LazLogger;
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TGuiTestRunner, TestRunner);
|
|
Application.Run;
|
|
end.
|
|
|