From 823b39133ade261e7030b446d639862653cd14ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Sun, 16 Sep 2012 11:48:00 +0200 Subject: [PATCH] Doc: run `ctest` with `--output-on-failure` rather than `-V`. --- README.md | 2 +- doc/building.dox | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 07fde48cf..d5dc7bcab 100644 --- a/README.md +++ b/README.md @@ -59,7 +59,7 @@ If you want to build also unit tests (which are not built by default), pass `-DBUILD_TESTS=True` to CMake. Unit tests use Corrade's TestSuite framework and can be run using - ctest -V + ctest --output-on-failure in build directory. Everything should pass ;-) diff --git a/doc/building.dox b/doc/building.dox index 5153bf4b4..9b6b57782 100644 --- a/doc/building.dox +++ b/doc/building.dox @@ -81,7 +81,7 @@ If you want to build also unit tests (which are not built by default), pass `-DBUILD_TESTS=True` to CMake. Unit tests use Corrade's @ref Corrade::TestSuite "TestSuite" framework and can be run using - ctest -V + ctest --output-on-failure in build directory. Everything should pass ;-)