test: fixed parsing command line options

git-svn-id: trunk@10559 -
This commit is contained in:
vincents 2007-02-01 15:07:14 +00:00
parent 5c89a11221
commit 065a2e596b
2 changed files with 2 additions and 1 deletions

View File

@ -17,7 +17,7 @@
<RunParams>
<local>
<FormatVersion Value="1"/>
<CommandLineParams Value="-a"/>
<CommandLineParams Value="-a --file=results.xml"/>
<LaunchingApplication PathPlusParams="/usr/X11R6/bin/xterm -T 'Lazarus Run Output' -e $(LazarusDir)/tools/runwait.sh $(TargetCmdLine)"/>
</local>
</RunParams>

View File

@ -39,6 +39,7 @@ type
procedure TLazTestRunner.AppendLongOpts;
begin
inherited;
LongOpts.Add('compiler:');
end;