From c363ce85005809ea067046e98e737c64a6cc57f6 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Wed, 1 Nov 2017 23:55:49 +0100 Subject: [PATCH] Don't use "-t" option when running tests any longer This option now lists the available tags instead of showing the timing information. We could use Catch "--durations yes" option, but it results in too much output, so for now just run the tests with default verbosity. --- .travis.yml | 2 +- build/buildbot/config/include/csleobuild.xml | 2 +- tests/runtests.bat | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 899f0b5993..45a3748dbe 100644 --- a/.travis.yml +++ b/.travis.yml @@ -48,7 +48,7 @@ script: - make -C tests - echo -en 'travis_fold:end:script.tests\\r' - echo 'Testing...' && echo -en 'travis_fold:start:script.testing\\r' - - pushd tests && ./test -t && popd + - pushd tests && ./test && popd - echo -en 'travis_fold:end:script.testing\\r' - echo 'Building samples...' && echo -en 'travis_fold:start:script.samples\\r' - (test "$wxSKIP_SAMPLES" && echo 'SKIPPED') || make samples diff --git a/build/buildbot/config/include/csleobuild.xml b/build/buildbot/config/include/csleobuild.xml index 646f847cc0..44b90328ac 100644 --- a/build/buildbot/config/include/csleobuild.xml +++ b/build/buildbot/config/include/csleobuild.xml @@ -28,7 +28,7 @@ export DYLD_LIBRARY_PATH=../lib cd tests && - ./test -t && + ./test && open ./test_gui.app diff --git a/tests/runtests.bat b/tests/runtests.bat index 57aa704234..9e23022403 100644 --- a/tests/runtests.bat +++ b/tests/runtests.bat @@ -24,7 +24,7 @@ for /d %%x in (*) do @( echo Running non-GUI unit test echo ======================================================================== echo. - %%x\test.exe -t >tmp + %%x\test.exe >tmp REM show the output of the test in the buildbot log: type tmp @@ -48,7 +48,7 @@ for /d %%x in (*) do @( echo Running GUI unit test echo ======================================================================== echo. - %%x\test_gui.exe -t >tmp + %%x\test_gui.exe >tmp REM show the output of the test in the buildbot log: type tmp