xref: /aosp_15_r20/external/gflags/test/gflags_strip_flags_test.cmake (revision 08ab5237c114d5c0eac1090c56f941d3f639d7d3)
1if (NOT BINARY)
2  message (FATAL_ERROR "BINARY file to check not specified!")
3endif ()
4file (STRINGS "${BINARY}" strings REGEX "This text should be stripped out")
5if (strings)
6  message (FATAL_ERROR "Text not stripped from binary like it should be: ${BINARY}")
7endif ()
8