Skip to content

Commit 072f03a

Browse files
committed
Replaced REM by echo in appveyor batch files.
1 parent e3b8f5e commit 072f03a

File tree

2 files changed

+21
-21
lines changed

2 files changed

+21
-21
lines changed

ci/appveyor/install.bat

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
1-
REM ======================================================================
2-
REM Cloning google test repository
3-
REM =======================================================================
1+
echo ======================================================================
2+
echo Cloning google test repository
3+
echo =======================================================================
44
git clone https://github.com/google/googletest.git c:\projects\third_party\googletest
55
cd /d c:\projects\third_party\googletest
66
git checkout release-1.6.0
77

8-
REM =======================================================================
9-
REM Generating google test Visual Studio 2010 solution
10-
REM =======================================================================
8+
echo =======================================================================
9+
echo Generating google test Visual Studio 2010 solution
10+
echo =======================================================================
1111
mkdir msvc2010
1212
cd msvc2010
1313
cmake -G "Visual Studio 10 2010" -Dgtest_force_shared_crt=ON -DCMAKE_CXX_FLAGS_DEBUG=/MDd -DCMAKE_CXX_FLAGS_RELEASE=/MD "c:\projects\third_party\googletest"
1414
cd..
1515

16-
REM =======================================================================
17-
REM Displaying Environnment Variables
18-
REM =======================================================================
16+
echo =======================================================================
17+
echo Displaying Environnment Variables
18+
echo =======================================================================
1919
set
2020

21-
REM =======================================================================
22-
REM Building google test library
23-
REM =======================================================================
21+
echo =======================================================================
22+
echo Building google test library
23+
echo =======================================================================
2424
msbuild "msvc2010\gtest.sln" /m /verbosity:minimal /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
2525

26-
REM =======================================================================
27-
REM Done
28-
REM =======================================================================
26+
echo =======================================================================
27+
echo Done
28+
echo =======================================================================

ci/appveyor/test_script.bat

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
REM ======================================================================
2-
REM Running unit tests
3-
REM =======================================================================
1+
echo ======================================================================
2+
echo Running unit tests
3+
echo =======================================================================
44
cd /d c:\projects\bin2cpp\msvc
55
set path=%PATH%;c:\projects\bin2cpp\msvc\Win32\Release
66
bin2cpp_unittest.exe --gtest_filter=-TestExtraction.testRandom100000
77

8-
REM ======================================================================
9-
REM Uploading test results to AppVeyor
10-
REM =======================================================================
8+
echo ======================================================================
9+
echo Uploading test results to AppVeyor
10+
echo =======================================================================
1111
set TEST_RESULT_URL=https://ci.appveyor.com/api/testresults/junit/%APPVEYOR_JOB_ID%
1212
set TEST_RESULT_FILE=%CD%\bin2cppTest.x86.release.xml
1313
echo TEST_RESULT_URL=%TEST_RESULT_URL%

0 commit comments

Comments
 (0)