AppVeyor fixes

Signed-off-by: FrancisANDRE <zosrothko@orange.fr>
This commit is contained in:
FrancisANDRE
2016-03-05 17:57:11 +01:00
parent d1b7f14dd5
commit 26232dfce5
2 changed files with 3 additions and 3 deletions

View File

@@ -103,7 +103,7 @@
<OutDir>bin\</OutDir>
<IntDir>obj\TestSuite\$(Configuration)\</IntDir>
<LinkIncremental>true</LinkIncremental>
<ExecutablePath>C:\Progra~2\PostgreSQL\9.5\bin;$(ExecutablePath)</ExecutablePath>
<ExecutablePath>$(ExecutablePath)</ExecutablePath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='release_shared|Win32'">
<OutDir>bin\</OutDir>

View File

@@ -364,12 +364,12 @@ test_script:
if ($env:platform -eq "Win32")
{
$env:PATH = "$env:POCO_BASE\bin;" + $env:PATH;$suffix = '';
$excluded = @('Data', 'Data/MySQL', 'Data/ODBC','Data/PostgreSQL', 'Redis', 'PDF')
$excluded = @('Data/MySQL', 'Data/ODBC','Data/PostgreSQL', 'Redis', 'PDF')
}
if ($env:platform -eq "x64")
{
$env:PATH = "$env:POCO_BASE\bin64;" + $env:PATH;$suffix = 64;
$excluded = @('Data', 'Data/MySQL', 'Data/ODBC','Redis', 'PDF')
$excluded = @('Data/MySQL', 'Data/ODBC','Redis', 'PDF')
}
Write-Host -ForegroundColor Yellow '>>> current directory is ' $(get-location).Path;