test: fixed compiling runtests, fixes TestExpandFilename under Windows

git-svn-id: trunk@42805 -
This commit is contained in:
mattias 2013-09-15 12:50:03 +00:00
parent 80b7afb789
commit d37aa8ac09
3 changed files with 11 additions and 4 deletions

View File

@ -106,9 +106,16 @@ end;
procedure TTestLazUtils.TestExpandFilename;
begin
{$IFDEF Unix}
AssertEquals('basedir','/opt/ide',ExpandFileNameUTF8('ide','/opt/'));
AssertEquals('basedir','/opt/ide',ExpandFileNameUTF8('ide','/opt'));
AssertEquals('basedir','/ide',ExpandFileNameUTF8('/ide','/opt'));
{$ENDIF}
{$IFDEF Windows}
AssertEquals('basedir','C:\opt\ide',ExpandFileNameUTF8('ide','C:\opt\'));
AssertEquals('basedir','D:\opt\ide',ExpandFileNameUTF8('ide','D:\opt'));
AssertEquals('basedir','E:\ide',ExpandFileNameUTF8('E:\ide','D:\opt'));
{$ENDIF}
end;
procedure TTestLazUtils.TestMergeCmdLineParams;

View File

@ -6,8 +6,8 @@ interface
uses
Classes, SysUtils, types, math, fpcunit, Interfaces, LCLType, LCLIntf, Forms, ComCtrls,
Controls, StdCtrls, LMessages, LCLProc, WSComCtrls, testglobals, MouseInputIntf,
MouseAndKeyInput;
Controls, StdCtrls, LMessages, LCLProc, WSComCtrls, testglobals,
MouseInputIntf, MouseAndKeyInput;
type

View File

@ -35,10 +35,10 @@ uses
TestBasicCodetools, TestCTXMLFixFragments, TestCTRangeScan, TestCTH2Pas,
TestCompleteBlock, TestStdCodetools, TestMethodJumpTool, TestCfgScript,
// lcltests
testunicode, testpen, TestPreferredSize, TestTextStrings, testpagecontrol
testunicode, testpen, TestPreferredSize, TestTextStrings
{$IFNDEF NoSemiAutomatedTests}
// semi-automatic tests
, semiautotest, idesemiautotests, lclsemiautotests
, testpagecontrol, semiautotest, idesemiautotests, lclsemiautotests
{$endif}
;