gravatar
alpar (Alpar Juttner)
alpar@cs.elte.hu
Support tests with valgrind (#416)
0 1 0
default
1 file changed with 10 insertions and 0 deletions:
↑ Collapse diff ↑
Show white space 12 line context
... ...
@@ -4,12 +4,16 @@
4 4
)
5 5

	
6 6
LINK_DIRECTORIES(
7 7
  ${PROJECT_BINARY_DIR}/lemon
8 8
)
9 9

	
10
SET(TEST_WITH_VALGRIND "NO" CACHE STRING
11
  "Run the test with valgrind (YES/NO).")
12
SET(VALGRIND_FLAGS "" CACHE STRING "Valgrind flags used by the tests.")
13

	
10 14
SET(TESTS
11 15
  adaptors_test
12 16
  bfs_test
13 17
  circulation_test
14 18
  connectivity_test
15 19
  counter_test
... ...
@@ -126,9 +130,15 @@
126 130
  IF(${CMAKE_BUILD_TYPE} STREQUAL "Maintainer")
127 131
    ADD_EXECUTABLE(${TEST_NAME} ${TEST_NAME}.cc)
128 132
  ELSE()
129 133
    ADD_EXECUTABLE(${TEST_NAME} EXCLUDE_FROM_ALL ${TEST_NAME}.cc)
130 134
  ENDIF()
131 135
  TARGET_LINK_LIBRARIES(${TEST_NAME} lemon)
136
    IF(TEST_WITH_VALGRIND)
137
      ADD_TEST(${TEST_NAME}
138
        valgrind --error-exitcode=1 ${VALGRIND_FLAGS}
139
        ${CMAKE_CURRENT_BINARY_DIR}/${TEST_NAME} )
140
    ELSE()
132 141
  ADD_TEST(${TEST_NAME} ${TEST_NAME})
142
    ENDIF()
133 143
  ADD_DEPENDENCIES(check ${TEST_NAME})
134 144
ENDFOREACH()
0 comments (0 inline)