974b99b424
Exclude "threads" test from valgrind targets [skip ci]
15 lines
597 B
CMake
15 lines
597 B
CMake
# Complete list of options is available at http://cmake.org/Wiki/CMake/Testing_With_CTest
|
|
|
|
# List of tests to ignore during the MemCheck stage
|
|
SET(CTEST_CUSTOM_MEMCHECK_IGNORE ${CTEST_CUSTOM_MEMCHECK_IGNORE}
|
|
"leantests"
|
|
"threads"
|
|
)
|
|
|
|
# Regular expression for excluding files from coverage testing
|
|
SET(CTEST_CUSTOM_COVERAGE_EXCLUDE ${CTEST_CUSTOM_COVERAGE_EXCLUDE} "tests/*")
|
|
|
|
# Suppress warnings from OSX/Travis
|
|
SET(CTEST_CUSTOM_WARNING_EXCEPTION
|
|
${CTEST_CUSTOM_WARNING_EXCEPTION}
|
|
"ld: warning: ignoring file /usr/local/lib/gcc/x86_64-apple-darwin12.4.0/4.9.0/libgcc.a.*")
|