mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-07-16 09:36:10 +02:00
18 lines
387 B
ObjectPascal
18 lines
387 B
ObjectPascal
program TestGdbmi;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
TestDbgControlForm, // use first
|
|
Interfaces, Forms, GuiTestRunner, TestGdbType, TestInstructionQueue,
|
|
TestDisAss, TestException, Testwatches, TestBreakPoint,
|
|
TestEnvironment, TestArgV, LazLogger;
|
|
|
|
begin
|
|
Application.Title:='';
|
|
Application.Initialize;
|
|
Application.CreateForm(TGuiTestRunner, TestRunner);
|
|
Application.Run;
|
|
end.
|
|
|