How to let CMake / CTest memcheck exit with status code 1 on failure?Improve INSERT-per-second performance of SQLite?How to adapt my unit tests to cmake and ctest?Limit --memcheck To Your Own CodeMemory leak C++Access CMake cache variable from CTest scriptCMake/CTest Code coverage checkHow to write a functional test script to run under cmake/ctestValgrind reports snprintf memory leakCMake / CTest that a source file will not compileHow to run CTest on CMake targeting WindowsCE toolset and Visual Studio generator?
How to capture more stars?
Black-and-white film where monster/alien gets fried
For which distribution same pdf is generated for given random variable
At what point in European history could a government build a printing press given a basic description?
Word Mastermind
How were these pictures of spacecraft wind tunnel testing taken?
How long does it take to crack RSA 1024 with a PC?
Which noble houses were destroyed during the Game of Thrones?
Help to draw software architecture stack diagrams?
Compact Mechanical Energy Source
Is floating in space similar to falling under gravity?
Automatic calculation of line orientations in QGIS
Could I be denied entry into Ireland due to medical and police situations during a previous UK visit?
Can someone walk us through Nielsen's proof on a circuit for quantum teleportation?
Best strategy for UK visa for a school trip (travelling alone or accomanpied child)?
Can I use the Shadow Step feature to effectively teleport into a Darkness spell I cast upon myself?
Is there an explanation for Austria's Freedom Party virtually retaining its vote share despite recent scandal?
1960s sci-fi novella with a character who is treated as invisible by being ignored
Were pen cap holes designed to prevent death by suffocation if swallowed?
Is this story about US tax office reasonable?
Expectation over a max operation
Is it ok to put a subplot to a story that is never meant to contribute to the development of the main plot?
Infinitely many hats
Why did this prime-sequence puzzle not work?
How to let CMake / CTest memcheck exit with status code 1 on failure?
Improve INSERT-per-second performance of SQLite?How to adapt my unit tests to cmake and ctest?Limit --memcheck To Your Own CodeMemory leak C++Access CMake cache variable from CTest scriptCMake/CTest Code coverage checkHow to write a functional test script to run under cmake/ctestValgrind reports snprintf memory leakCMake / CTest that a source file will not compileHow to run CTest on CMake targeting WindowsCE toolset and Visual Studio generator?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I want to use ctest to run my tests with valgrind.
Thus I have written the following in my cmake file:
include(CTest)
find_program(MEMORYCHECK_COMMAND valgrind)
set(MEMORYCHECK_COMMAND_OPTIONS "--leak-check=full --error-exitcode=1")
set(MEMORYCHECK_SUPPRESSIONS_FILE "$PROJECT_SOURCE_DIR/.valgrind-suppressions")
This seems to work. When I run ctest -D ExperimentalMemCheck . on a leaking program it shows me that it has found memory leaks, however does not exit with status != 0.
How can I get a exit code 1 on failure?
c cmake valgrind ctest
add a comment |
I want to use ctest to run my tests with valgrind.
Thus I have written the following in my cmake file:
include(CTest)
find_program(MEMORYCHECK_COMMAND valgrind)
set(MEMORYCHECK_COMMAND_OPTIONS "--leak-check=full --error-exitcode=1")
set(MEMORYCHECK_SUPPRESSIONS_FILE "$PROJECT_SOURCE_DIR/.valgrind-suppressions")
This seems to work. When I run ctest -D ExperimentalMemCheck . on a leaking program it shows me that it has found memory leaks, however does not exit with status != 0.
How can I get a exit code 1 on failure?
c cmake valgrind ctest
Do you useMEMORYCHECK_COMMAND_OPTIONSvariable in any way?
– arrowd
Mar 24 at 9:20
Only in the way as shown in the example.
– Arwed Mett
Mar 24 at 9:21
add a comment |
I want to use ctest to run my tests with valgrind.
Thus I have written the following in my cmake file:
include(CTest)
find_program(MEMORYCHECK_COMMAND valgrind)
set(MEMORYCHECK_COMMAND_OPTIONS "--leak-check=full --error-exitcode=1")
set(MEMORYCHECK_SUPPRESSIONS_FILE "$PROJECT_SOURCE_DIR/.valgrind-suppressions")
This seems to work. When I run ctest -D ExperimentalMemCheck . on a leaking program it shows me that it has found memory leaks, however does not exit with status != 0.
How can I get a exit code 1 on failure?
c cmake valgrind ctest
I want to use ctest to run my tests with valgrind.
Thus I have written the following in my cmake file:
include(CTest)
find_program(MEMORYCHECK_COMMAND valgrind)
set(MEMORYCHECK_COMMAND_OPTIONS "--leak-check=full --error-exitcode=1")
set(MEMORYCHECK_SUPPRESSIONS_FILE "$PROJECT_SOURCE_DIR/.valgrind-suppressions")
This seems to work. When I run ctest -D ExperimentalMemCheck . on a leaking program it shows me that it has found memory leaks, however does not exit with status != 0.
How can I get a exit code 1 on failure?
c cmake valgrind ctest
c cmake valgrind ctest
asked Mar 24 at 8:29
Arwed MettArwed Mett
1,26911322
1,26911322
Do you useMEMORYCHECK_COMMAND_OPTIONSvariable in any way?
– arrowd
Mar 24 at 9:20
Only in the way as shown in the example.
– Arwed Mett
Mar 24 at 9:21
add a comment |
Do you useMEMORYCHECK_COMMAND_OPTIONSvariable in any way?
– arrowd
Mar 24 at 9:20
Only in the way as shown in the example.
– Arwed Mett
Mar 24 at 9:21
Do you use
MEMORYCHECK_COMMAND_OPTIONS variable in any way?– arrowd
Mar 24 at 9:20
Do you use
MEMORYCHECK_COMMAND_OPTIONS variable in any way?– arrowd
Mar 24 at 9:20
Only in the way as shown in the example.
– Arwed Mett
Mar 24 at 9:21
Only in the way as shown in the example.
– Arwed Mett
Mar 24 at 9:21
add a comment |
1 Answer
1
active
oldest
votes
By default, valgrind memcheck exits with an error for leak kinds definite and possible.
You might want to have more leak kinds causing an error exit,
by using --errors-for-leak-kinds:
--errors-for-leak-kinds=kind1,kind2,.. which leak kinds are errors?
[definite,possible]
where kind is one of:
definite indirect possible reachable all none
1
The problem is not valgrind. If I run valgrind manually I get the correct exit status. I want ctest to return a non zero exit status.
– Arwed Mett
Mar 24 at 16:55
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55321934%2fhow-to-let-cmake-ctest-memcheck-exit-with-status-code-1-on-failure%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
By default, valgrind memcheck exits with an error for leak kinds definite and possible.
You might want to have more leak kinds causing an error exit,
by using --errors-for-leak-kinds:
--errors-for-leak-kinds=kind1,kind2,.. which leak kinds are errors?
[definite,possible]
where kind is one of:
definite indirect possible reachable all none
1
The problem is not valgrind. If I run valgrind manually I get the correct exit status. I want ctest to return a non zero exit status.
– Arwed Mett
Mar 24 at 16:55
add a comment |
By default, valgrind memcheck exits with an error for leak kinds definite and possible.
You might want to have more leak kinds causing an error exit,
by using --errors-for-leak-kinds:
--errors-for-leak-kinds=kind1,kind2,.. which leak kinds are errors?
[definite,possible]
where kind is one of:
definite indirect possible reachable all none
1
The problem is not valgrind. If I run valgrind manually I get the correct exit status. I want ctest to return a non zero exit status.
– Arwed Mett
Mar 24 at 16:55
add a comment |
By default, valgrind memcheck exits with an error for leak kinds definite and possible.
You might want to have more leak kinds causing an error exit,
by using --errors-for-leak-kinds:
--errors-for-leak-kinds=kind1,kind2,.. which leak kinds are errors?
[definite,possible]
where kind is one of:
definite indirect possible reachable all none
By default, valgrind memcheck exits with an error for leak kinds definite and possible.
You might want to have more leak kinds causing an error exit,
by using --errors-for-leak-kinds:
--errors-for-leak-kinds=kind1,kind2,.. which leak kinds are errors?
[definite,possible]
where kind is one of:
definite indirect possible reachable all none
answered Mar 24 at 14:20
phdphd
2,03767
2,03767
1
The problem is not valgrind. If I run valgrind manually I get the correct exit status. I want ctest to return a non zero exit status.
– Arwed Mett
Mar 24 at 16:55
add a comment |
1
The problem is not valgrind. If I run valgrind manually I get the correct exit status. I want ctest to return a non zero exit status.
– Arwed Mett
Mar 24 at 16:55
1
1
The problem is not valgrind. If I run valgrind manually I get the correct exit status. I want ctest to return a non zero exit status.
– Arwed Mett
Mar 24 at 16:55
The problem is not valgrind. If I run valgrind manually I get the correct exit status. I want ctest to return a non zero exit status.
– Arwed Mett
Mar 24 at 16:55
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55321934%2fhow-to-let-cmake-ctest-memcheck-exit-with-status-code-1-on-failure%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Do you use
MEMORYCHECK_COMMAND_OPTIONSvariable in any way?– arrowd
Mar 24 at 9:20
Only in the way as shown in the example.
– Arwed Mett
Mar 24 at 9:21