mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 12:38:05 +02:00
test: fixed compiling runtests, fixes TestExpandFilename under Windows
git-svn-id: trunk@42805 -
This commit is contained in:
parent
80b7afb789
commit
d37aa8ac09
@ -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;
|
||||
|
@ -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
|
||||
|
||||
|
@ -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}
|
||||
;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user