-
Notifications
You must be signed in to change notification settings - Fork 129
/
CTestCustom.cmake
32 lines (27 loc) · 1.01 KB
/
CTestCustom.cmake
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
#-------------------------------------------------------------------------------
#
# CTestCustom.cmake
#
# This file enables customization of CTest.
#
#-------------------------------------------------------------------------------
# Specify tests that will be ignored.
list(APPEND CTEST_CUSTOM_TESTS_IGNORE
roottest-cling-parsing-semicolon)
if(CTEST_BUILD_NAME MATCHES slc6|centos7)
list(APPEND CTEST_CUSTOM_TESTS_IGNORE
roottest-root-meta-loadAllLibs-LoadAllLibs
roottest-root-meta-loadAllLibs-LoadAllLibsAZ
roottest-root-meta-loadAllLibs-LoadAllLibsZA
roottest-root-html-runMakeIndex
roottest-root-multicore-fork)
endif()
if(WIN32)
# driveTabCom.py: `import pty` is not supported on Windows
list(APPEND CTEST_CUSTOM_TESTS_IGNORE
roottest-root-rint-TabCom
roottest-root-rint-BackslashNewline)
endif()
if(CTEST_BUILD_NAME MATCHES fst)
list(APPEND CTEST_CUSTOM_TESTS_IGNORE roottest-python-JsMVA-NewMethods)
endif()