From bf4614ddb69286b7e60f4f782bea13a8a6bd911d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Rombauts?= Date: Thu, 13 Mar 2014 22:47:09 +0100 Subject: [PATCH] ctest --output-on-failure --- .travis.yml | 2 +- build.bat | 2 +- build.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 1139982..e174a18 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,5 +15,5 @@ before_script: - cmake .. - ln -s ../examples examples -script: make && make test +script: make && ctest --output-on-failure diff --git a/build.bat b/build.bat index b11395f..d54f281 100644 --- a/build.bat +++ b/build.bat @@ -14,5 +14,5 @@ mkdir examples mkdir examples\example1 copy ..\examples\example1\example.db3 examples\example1 copy ..\examples\example1\logo.png examples\example1 -ctest . +ctest --output-on-failure cd .. \ No newline at end of file diff --git a/build.sh b/build.sh index 50d6d1e..ceb60ee 100755 --- a/build.sh +++ b/build.sh @@ -13,4 +13,4 @@ cmake --build . mkdir -p examples/example1 cp ../examples/example1/example.db3 examples/example1 cp ../examples/example1/logo.png examples/example1 -ctest . +ctest --output-on-failure