test: fixed compilation of the examples on win64

git-svn-id: trunk@10979 -
This commit is contained in:
vincents 2007-04-19 20:56:54 +00:00
parent dab74de8af
commit 38ea67c89e

View File

@ -99,7 +99,7 @@ begin
if FileExists(AhkFileName) then if FileExists(AhkFileName) then
Result.AddTest(TLpiTest.Create(APath, 'TestRun')); Result.AddTest(TLpiTest.Create(APath, 'TestRun'));
{$ELSE} {$ELSE}
{$NOTE scripting is only available on windows} {$NOTE scripting is only available on win32}
{$ENDIF} {$ENDIF}
end; end;
@ -141,7 +141,7 @@ begin
AssertTrue(LazBuildPath + ' does not exist', FileExists(LazBuildPath)); AssertTrue(LazBuildPath + ' does not exist', FileExists(LazBuildPath));
LazBuild := TProcess.Create(nil); LazBuild := TProcess.Create(nil);
try try
{$IFDEF win32} {$IFDEF windows}
LazBuild.Options := [poNewConsole]; LazBuild.Options := [poNewConsole];
{$ELSE} {$ELSE}
LazBuild.Options := [poNoConsole]; LazBuild.Options := [poNoConsole];