On 09/01/2015 09:30 AM, Raphael Kubo da Costa wrote:
> That's because that script is asserting that the regular expression does
> _not_ match, which is always the case when GNU binutils is not used.

Prior to the refactoring it also tested for existence.  See below.
How did that pass before?

Thanks,
-Brad


$ git show v3.3.1:Tests/Plugin/check_mod_soname.cmake
execute_process(COMMAND ${readelf} -d ${mod1} OUTPUT_FILE ${mod1}.readelf.txt)
execute_process(COMMAND ${readelf} -d ${mod2} OUTPUT_FILE ${mod2}.readelf.txt)
file(STRINGS ${mod1}.readelf.txt soname1 REGEX "\\(SONAME\\)")
file(STRINGS ${mod2}.readelf.txt soname2 REGEX "\\(SONAME\\)")
if(soname1)
  message(STATUS "${mod1} has soname as expected: ${soname1}")
else()
  message(FATAL_ERROR "${mod1} has no soname but should:\n  ${soname1}")
endif()
if(soname2)
  message(FATAL_ERROR "${mod2} has soname but should not:\n  ${soname2}")
else()
  message(STATUS "${mod2} has no soname as expected")
endif()

-- 

Powered by www.kitware.com

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Kitware offers various services to support the CMake community. For more 
information on each offering, please visit:

CMake Support: http://cmake.org/cmake/help/support.html
CMake Consulting: http://cmake.org/cmake/help/consulting.html
CMake Training Courses: http://cmake.org/cmake/help/training.html

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/cmake-developers

Reply via email to