summaryrefslogtreecommitdiffstats
path: root/Tests/VisibilityInlinesHidden/verify.cmake
blob: 80dd13c4e6986bba14c68edd2bc88af145409e28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
execute_process(COMMAND ${CMAKE_NM} -D ${TEST_LIBRARY_PATH}
  RESULT_VARIABLE RESULT
  OUTPUT_VARIABLE OUTPUT
  ERROR_VARIABLE ERROR
)

if(NOT "${RESULT}" STREQUAL "0")
  message(FATAL_ERROR "nm failed [${RESULT}] [${OUTPUT}] [${ERROR}]")
endif()

if(${OUTPUT} MATCHES "Foo[^\\n]*bar")
  message(FATAL_ERROR
    "Found Foo::bar() which should have been hidden [${OUTPUT}]")
endif()