CTestCustom.cmake 710 B

1234567891011121314
  1. # kwsys.testProcess-10 involves sending SIGINT to a child process, which then
  2. # exits abnormally via a call to _exit(). (On Windows, a call to ExitProcess).
  3. # Naturally, this results in plenty of memory being "leaked" by this child
  4. # process - the memory check results are not meaningful in this case.
  5. #
  6. # kwsys.testProcess-9 also tests sending SIGINT to a child process. However,
  7. # normal operation of that test involves the child process timing out, and the
  8. # host process kills (SIGKILL) it as a result. Since it was SIGKILL'ed, the
  9. # resulting memory leaks are not logged by valgrind anyway. Therefore, we
  10. # don't have to exclude it.
  11. list(APPEND CTEST_CUSTOM_MEMCHECK_IGNORE
  12. kwsys.testProcess-10
  13. )