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 <ned@trueos.nedland>2017-08-25 19:59:45 +0300
committerNiall Douglas <ned@trueos.nedland>2017-08-25 19:59:45 +0300
commit72950428d618ad70c7d0d520e359ab492b1ba6cc (patch)
tree388a7084035ea4f4c45f32013c7ce20c2f6bc96c /.ci.cmake
parentf168869f401d97da6cde6c9a81ca68414f115f1f (diff)
Reenable the shared_fs_mutex testing on Travis as it might be working :)
Got started on fixing storage_profile on libc++ where it currently aborts due to a defect in libc++'s std::thread implementation.
Diffstat (limited to '.ci.cmake')
-rw-r--r--.ci.cmake6
1 files changed, 3 insertions, 3 deletions
diff --git a/.ci.cmake b/.ci.cmake
index 081c2b77..e7914996 100644
--- a/.ci.cmake
+++ b/.ci.cmake
@@ -15,7 +15,7 @@ ctest_update()
ctest_configure()
ctest_build(TARGET _dl)
ctest_build(TARGET _sl)
-ctest_test(RETURN_VALUE retval EXCLUDE "afio_hl|shared_fs_mutex")
+ctest_test(RETURN_VALUE retval EXCLUDE "afio_hl")
if(WIN32)
if(EXISTS prebuilt/bin/Release/afio_dl-2.0-Windows-x64-Release.dll)
checked_execute_process("Tarring up binaries"
@@ -50,13 +50,13 @@ endif()
if(CMAKE_CXX_COMPILER_ID MATCHES "Clang")
ctest_build(TARGET _sl-asan)
set(CTEST_CONFIGURATION_TYPE "asan")
- ctest_test(RETURN_VALUE retval2 INCLUDE "afio_sl" EXCLUDE "shared_fs_mutex")
+ ctest_test(RETURN_VALUE retval2 INCLUDE "afio_sl")
else()
set(retval2 0)
endif()
ctest_build(TARGET _sl-ubsan)
set(CTEST_CONFIGURATION_TYPE "ubsan")
-ctest_test(RETURN_VALUE retval3 INCLUDE "afio_sl" EXCLUDE "shared_fs_mutex")
+ctest_test(RETURN_VALUE retval3 INCLUDE "afio_sl")
merge_junit_results_into_ctest_xml()
if(EXISTS "${toupload}")
ctest_upload(FILES "${toupload}")