Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/llfio.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) <spamtrap@nedprod.com>2016-08-09 10:06:05 +0300
committerNiall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) <spamtrap@nedprod.com>2016-08-09 10:06:05 +0300
commitd9c75443844eef8566a76603244bbe552ffcf921 (patch)
tree768f2fb55efaccf82359fe2eb66aa287dd97ce95 /.ci.cmake
parent48942c2b71e6b2c0c4cb128e532a75f260e26151 (diff)
Merge the travis docs generation and push stuff from Outcome
Diffstat (limited to '.ci.cmake')
-rw-r--r--.ci.cmake5
1 files changed, 4 insertions, 1 deletions
diff --git a/.ci.cmake b/.ci.cmake
index 7f267af0..212dfcc0 100644
--- a/.ci.cmake
+++ b/.ci.cmake
@@ -23,7 +23,7 @@ ctest_empty_binary_directory(${CTEST_BINARY_DIRECTORY})
ctest_start("Experimental")
ctest_configure()
ctest_build()
-ctest_test()
+ctest_test(RETURN_VALUE retval)
merge_junit_results_into_ctest_xml()
if(WIN32)
if(EXISTS build/bin/Release/afio_dl-2.0-Windows-x64-Release.dll)
@@ -55,3 +55,6 @@ else()
endif()
endif()
ctest_submit()
+if(NOT retval EQUAL 0)
+ message(FATAL_ERROR "FATAL: Running tests exited with ${retval}")
+endif()