unit Unit1; {$mode objfpc}{$H+} interface uses Classes, SysUtils, LResources, Forms, Controls, Graphics, Dialogs, StdCtrls; type { TForm1 } TForm1 = class(TForm) ApplicationProperties1: TApplicationProperties; Memo1: TMemo; procedure ApplicationProperties1Idle(Sender: TObject; var Done: Boolean); procedure FormCreate(Sender: TObject); private { private declarations } public { public declarations } end; var Form1: TForm1; implementation { TForm1 } procedure TForm1.FormCreate(Sender: TObject); begin Memo1.Clear; end; procedure TForm1.ApplicationProperties1Idle(Sender: TObject; var Done: Boolean); begin if ParamStr(1)='--runtest' then begin writeln('Memo length: ', Length(Memo1.Text)); Close; end; end; initialization {$I unit1.lrs} end.