mirror of
https://github.com/reactos/CMake.git
synced 2024-11-25 04:29:52 +00:00
29ad069472
Extract upstream KWSys using the following shell commands. $ git archive --prefix=upstream-kwsys/ dc4e4a55 | tar x $ git shortlog --no-merges --abbrev=8 --format='%h %s' cfeb27cc..dc4e4a55 Ben Boeckel (1): dd466688 CTestCustom: use list(APPEND) Domen Vrankar (1): dc4e4a55 SystemTools: Handle directories in CopyFile{Always,IfDifferent}
15 lines
710 B
CMake
15 lines
710 B
CMake
# kwsys.testProcess-10 involves sending SIGINT to a child process, which then
|
|
# exits abnormally via a call to _exit(). (On Windows, a call to ExitProcess).
|
|
# Naturally, this results in plenty of memory being "leaked" by this child
|
|
# process - the memory check results are not meaningful in this case.
|
|
#
|
|
# kwsys.testProcess-9 also tests sending SIGINT to a child process. However,
|
|
# normal operation of that test involves the child process timing out, and the
|
|
# host process kills (SIGKILL) it as a result. Since it was SIGKILL'ed, the
|
|
# resulting memory leaks are not logged by valgrind anyway. Therefore, we
|
|
# don't have to exclude it.
|
|
|
|
list(APPEND CTEST_CUSTOM_MEMCHECK_IGNORE
|
|
kwsys.testProcess-10
|
|
)
|