forked from root-project/roottest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CTestCustom.cmake
39 lines (34 loc) · 1.46 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
33
34
35
36
37
38
39
#-------------------------------------------------------------------------------
#
# 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(CTEST_BUILD_NAME MATCHES fst)
list(APPEND CTEST_CUSTOM_TESTS_IGNORE roottest-python-JsMVA-NewMethods)
endif()
if(CTEST_BUILD_NAME MATCHES clang39) # ABI mismatch between our clang and external clang
list(APPEND CTEST_CUSTOM_TESTS_IGNORE
tutorial-tmva-TMVAClassification
tutorial-tmva-TMVAMulticlass
tutorial-tmva-TMVAClassificationApplication
tutorial-tmva-TMVAClassificationCategoryApplication
tutorial-tmva-TMVARegressionApplication
tutorial-tmva-TMVAMulticlassApplication
tutorial-tmva-TMVARegression
roottest-cling-stl-map-stringMap
roottest-root-meta-genreflex-TClass-execbasic
roottest-cling-stl-map-badstringMap)
endif()