Testing tool
-
I posted this message sometimes back on Visual C++ forum. But didn't get much response. So, I thought it is may be because VC++ forum was not the right one to ask this. This is not directly a programming question but related to it, and also as it is a repost so it might be rated low. The question is: I am preparing a matrix on testing tools especially for C/C++. I need your suggestions on what you think about the tools you used for testing (if any). All kinds of tools are welcome like CPP Unit as a framework for unit testing, LM Bench for performance analysis, Nessus for port scanning. It may be that I have already used the tools and have my opinion but all what I need is your suggestions. Also, please rate me if you think this is not appropriate question for Lounge (with of course suggestion about where should I post this).
-
I posted this message sometimes back on Visual C++ forum. But didn't get much response. So, I thought it is may be because VC++ forum was not the right one to ask this. This is not directly a programming question but related to it, and also as it is a repost so it might be rated low. The question is: I am preparing a matrix on testing tools especially for C/C++. I need your suggestions on what you think about the tools you used for testing (if any). All kinds of tools are welcome like CPP Unit as a framework for unit testing, LM Bench for performance analysis, Nessus for port scanning. It may be that I have already used the tools and have my opinion but all what I need is your suggestions. Also, please rate me if you think this is not appropriate question for Lounge (with of course suggestion about where should I post this).
[Message Deleted]
-
[Message Deleted]
-
Is it a programming question ? Then I must remove it before the lounge police comes in. Tell me if you think it is.
It's not.
"Why don't you tie a kerosene-soaked rag around your ankles so the ants won't climb up and eat your candy ass..." - Dale Earnhardt, 1997
-----
"...the staggering layers of obscenity in your statement make it a work of art on so many levels." - Jason Jystad, 10/26/2001 -
[Message Deleted]
It's not a programming question.
"Why don't you tie a kerosene-soaked rag around your ankles so the ants won't climb up and eat your candy ass..." - Dale Earnhardt, 1997
-----
"...the staggering layers of obscenity in your statement make it a work of art on so many levels." - Jason Jystad, 10/26/2001 -
Is it a programming question ? Then I must remove it before the lounge police comes in. Tell me if you think it is.
That isn't a programming question. Leave it and you may get valuable replies. Just wait.
-
It's not a programming question.
"Why don't you tie a kerosene-soaked rag around your ankles so the ants won't climb up and eat your candy ass..." - Dale Earnhardt, 1997
-----
"...the staggering layers of obscenity in your statement make it a work of art on so many levels." - Jason Jystad, 10/26/2001 -
I posted this message sometimes back on Visual C++ forum. But didn't get much response. So, I thought it is may be because VC++ forum was not the right one to ask this. This is not directly a programming question but related to it, and also as it is a repost so it might be rated low. The question is: I am preparing a matrix on testing tools especially for C/C++. I need your suggestions on what you think about the tools you used for testing (if any). All kinds of tools are welcome like CPP Unit as a framework for unit testing, LM Bench for performance analysis, Nessus for port scanning. It may be that I have already used the tools and have my opinion but all what I need is your suggestions. Also, please rate me if you think this is not appropriate question for Lounge (with of course suggestion about where should I post this).
For unit-testing, I used Boost Test[^] before, but these days I mostly write a bunch of asserts and that's it :) For profiling, my current choice is GlowCode[^] for Windows and gprof[^] for Linux For memory leaks detection, I use Visual Leak Detector[^] for VC++ and Valgrind[^] for g++/Linux. Hope it helps.
-
For unit-testing, I used Boost Test[^] before, but these days I mostly write a bunch of asserts and that's it :) For profiling, my current choice is GlowCode[^] for Windows and gprof[^] for Linux For memory leaks detection, I use Visual Leak Detector[^] for VC++ and Valgrind[^] for g++/Linux. Hope it helps.