mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-05 17:32:37 +02:00
19 lines
433 B
ObjectPascal
19 lines
433 B
ObjectPascal
program TestGdbmi;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
Interfaces, Forms, GuiTestRunner, CompileHelpers, TestGdbType, TestInstructionQueue,
|
|
TestDisAss, TestBase, TestException, Testwatches, TestBreakPoint, TestGDBMIControl,
|
|
TestEnvironment, TestArgV;
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TGuiTestRunner, TestRunner);
|
|
Application.CreateForm(TTestControlForm, TestControlForm);
|
|
Application.Run;
|
|
end.
|
|
|