/usr/share/doc/root/test/CTestCustom.cmake is in root-system-doc 5.34.30-0ubuntu8.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | #---Custom CTest settings---------------------------------------------------
set(CTEST_CUSTOM_TESTS_IGNORE ${CTEST_CUSTOM_TESTS_IGNORE}
test-stressgui
test-stressproof)
if(WIN32)
set(CTEST_CUSTOM_TESTS_IGNORE ${CTEST_CUSTOM_TESTS_IGNORE}
test-tcollex)
endif()
if(CTEST_BUILD_NAME MATCHES icc) # sse tests of vc fail for icc compiler
set(CTEST_CUSTOM_TESTS_IGNORE ${CTEST_CUSTOM_TESTS_IGNORE}
vc-math_sse
vc-math_VC_LOG_ILP2_sse
vc-math_VC_LOG_ILP_sse
stressVdt)
endif()
if(CTEST_BUILD_NAME MATCHES mac107) # sse tests of vc fail for mac107 compiler
set(CTEST_CUSTOM_TESTS_IGNORE ${CTEST_CUSTOM_TESTS_IGNORE}
vc-gather_VC_USE_BSF_GATHERS_sse
vc-gather_VC_USE_SET_GATHERS_sse
vc-load_sse
vc-math_sse
vc-math_VC_LOG_ILP2_sse
vc-math_VC_LOG_ILP_sse
vc-scalaraccess_sse
vc-swizzles_sse
vc-utils_sse)
endif()
if(CTEST_BUILD_NAME MATCHES vc9) # some tests fail for vc9 compiler
set(CTEST_CUSTOM_TESTS_IGNORE ${CTEST_CUSTOM_TESTS_IGNORE}
mathcore-binarySearchTime
mathcore-testkdTreeBinning
test-stresstmva
tutorial-math-kdTreeBinning
tutorial-roostats-HybridOriginalDemo
tutorial-roostats-rs801_HypoTestInverterOriginal)
endif()
|