From 482699581b3457513ae8b1c26b31c8aa26c6c703 Mon Sep 17 00:00:00 2001
From: FrancisANDRE <zosrothko@orange.fr>
Date: Mon, 21 Dec 2015 21:38:23 +0100
Subject: [PATCH] put samples & tests as constant literal.

Signed-off-by: FrancisANDRE <zosrothko@orange.fr>
---
 appveyor.yml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/appveyor.yml b/appveyor.yml
index c1779de88..26f1233da 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -200,12 +200,12 @@ build_script:
   - ps: |
       if ($env:builder -eq "msbuild")
       {
-        $logger='C:\Program Files (x86)\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll';
-        $samples='samples';$tests='tests';$verbosity='minimal';
+        $logger='"C:\Program Files (x86)\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"';
+        $verbosity='minimal';
     
         $process = Start-Process -PassThru -NoNewWindow -Wait -FilePath "$env:poco_base\buildwin.cmd" -RSO cout -RSE cerr `
         -Args "$env:vsver build $env:linkmode $env:configuration $env:platform `
-               $samples $tests msbuild $verbosity $logger";
+               samples tests msbuild $verbosity $logger";
         gc cout; gc cerr;
         Write-Host -ForegroundColor Yellow '>>> current directory is '  $(get-location).Path;
       }
@@ -232,7 +232,7 @@ before_test:
       $CPPUNIT_IGNORE+=', class CppUnit::TestCaller<class RawSocketTest>.testSendToReceiveFromIPv4';
       $CPPUNIT_IGNORE+=', class CppUnit::TestCaller<class ICMPClientTest>.testPing';
       set-item -force -path "ENV:CPPUNIT_IGNORE"  -value $CPPUNIT_IGNORE
-      Write-Host -ForegroundColor Yellow 'CPPUNIT_IGNORE:'  $env:CPPUNIT_IGNORE;
+      Write-Host -ForegroundColor Yellow 'CPPUNIT_IGNORE=' $env:CPPUNIT_IGNORE;
 
 after_test: