From bfe095b0651a2833978b93dd3b06b080c5ea3d8b Mon Sep 17 00:00:00 2001 From: Markus Goetz Date: Wed, 21 Jun 2017 12:18:21 +0200 Subject: [PATCH] Jenkinsfile: Run verbose tests --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 993a7f26b..0833a5e6f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -11,7 +11,7 @@ node('CLIENT') { cd build cmake -DUNIT_TESTING=1 -DWITH_TESTING=1 -DBUILD_WITH_QT4=OFF .. make -j4 - ctest --output-on-failure''' + ctest -V --output-on-failure''' stage 'Qt5 - clang' sh '''rm -rf build @@ -19,7 +19,7 @@ node('CLIENT') { cd build cmake -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ -DUNIT_TESTING=1 -DWITH_TESTING=1 -DBUILD_WITH_QT4=OFF .. make -j4 - ctest --output-on-failure''' + ctest -V --output-on-failure''' stage 'Win32' -- 2.30.2