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