lazarus/components/lazdebuggergdbmi/test/TestGdbmi.lpr
martin 04d3f25da3 Debugger: test, refactor
git-svn-id: trunk@44485 -
2014-03-21 03:05:44 +00:00

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.