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.
This commit is contained in:
Vadim Zeitlin
2017-11-01 23:55:49 +01:00
parent d78b7d2f27
commit c363ce8500
3 changed files with 4 additions and 4 deletions

View File

@@ -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

View File

@@ -28,7 +28,7 @@
<command>
export DYLD_LIBRARY_PATH=../lib
cd tests &amp;&amp;
./test -t &amp;&amp;
./test &amp;&amp;
open ./test_gui.app
</command>
</copy-with-defaults>

View File

@@ -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