Skip to content

Commit

Permalink
removing -V from ctest execution Closes libgeos#908
Browse files Browse the repository at this point in the history
  • Loading branch information
cvvergara committed Aug 31, 2018
1 parent 4919f0d commit 8c380db
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 1.0.{build}
version: 1.0.{build}

image: Visual Studio 2017

Expand Down Expand Up @@ -74,7 +74,7 @@ build_script:

test_script:
- ps: 'Write-Host "Running tests:" -ForegroundColor Magenta'
- if "%BUILDER%"=="CMake" ctest -V --output-on-failure -C %CONFIGURATION%
- if "%BUILDER%"=="CMake" ctest --output-on-failure -C %CONFIGURATION%
- if "%BUILDER%"=="NMake" echo *** NMake does NOT build tests ***

# If you need to debug AppVeyor session (https://www.appveyor.com/docs/how-to/rdp-to-build-worker), then:
Expand Down
6 changes: 3 additions & 3 deletions tools/ci/common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#
# This is free software; you can redistribute and/or modify it under
# the terms of the GNU Lesser General Public Licence as published
# by the Free Software Foundation.
# by the Free Software Foundation.
# See the COPYING file for more information.
#
if [[ "$TRAVIS" != "true" ]] ; then
Expand All @@ -31,12 +31,12 @@ tmstamp()

run_make()
{
[ $TCI_NUMTHREADS -gt 0 ] && make -j $TCI_NUMTHREADS || make
[ $TCI_NUMTHREADS -gt 0 ] && make -j $TCI_NUMTHREADS || make
}

run_test()
{
[ -f CMakeCache.txt ] && \
ctest -V --output-on-failure . || \
ctest --output-on-failure . || \
make check
}

0 comments on commit 8c380db

Please sign in to comment.