lazarus/components/lazdebuggergdbmi/test/TestGdbmi.lpr
juha 657341c4df Fix debugger test compilation.
git-svn-id: trunk@64518 -
2021-02-10 15:35:10 +00:00

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.