Revision 1ed5b2319a500de0d0e5815c2a17615c134c863d authored by Danilo Piparo on 04 October 2023, 09:17:39 UTC, committed by Danilo Piparo on 04 October 2023, 19:02:58 UTC
by removing invocations to the root-config executable.
This executable was invoked twice to check if RDataFrame was available.
Such a behaviour causes a severe slowdown, especially on cvmfs. This
has been replaced by a simple string comparison.
1 parent d4024b9
Raw File
CTestCustom.cmake
#---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)
elseif(CTEST_BUILD_NAME MATCHES clang7)
  set(CTEST_CUSTOM_TESTS_IGNORE ${CTEST_CUSTOM_TESTS_IGNORE}
      vc-swizzles_avx)
elseif (CTEST_BUILD_NAME MATCHES aarch64 AND CTEST_BUILD_NAME MATCHES dbg)
  # these tests are disabled as they timeout
  list(APPEND CTEST_CUSTOM_TESTS_IGNORE test-stressroostats test-stresstmva test-stressroostats-interpreted test-stresshistogram-interpreted test-stresshistogram test-stressgeometry test-tcollbm test-bench test-stressgeometry-interpreted)
endif()
back to top