Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. The Lounge
  3. Testing tool

Testing tool

Scheduled Pinned Locked Moved The Lounge
c++testingbeta-testingtoolsperformance
9 Posts 5 Posters 3 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • S Offline
    S Offline
    spsharma
    wrote on last edited by
    #1

    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).

    S N 2 Replies Last reply
    0
    • S spsharma

      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).

      S Offline
      S Offline
      Sachin Pimpale
      wrote on last edited by
      #2

      [Message Deleted]

      S realJSOPR 2 Replies Last reply
      0
      • S Sachin Pimpale

        [Message Deleted]

        S Offline
        S Offline
        spsharma
        wrote on last edited by
        #3

        Is it a programming question ? Then I must remove it before the lounge police comes in. Tell me if you think it is.

        realJSOPR R 2 Replies Last reply
        0
        • S Sachin Pimpale

          [Message Deleted]

          realJSOPR Offline
          realJSOPR Offline
          realJSOP
          wrote on last edited by
          #4

          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

          S 1 Reply Last reply
          0
          • S spsharma

            Is it a programming question ? Then I must remove it before the lounge police comes in. Tell me if you think it is.

            realJSOPR Offline
            realJSOPR Offline
            realJSOP
            wrote on last edited by
            #5

            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

            1 Reply Last reply
            0
            • S spsharma

              Is it a programming question ? Then I must remove it before the lounge police comes in. Tell me if you think it is.

              R Offline
              R Offline
              Rajesh R Subramanian
              wrote on last edited by
              #6

              That isn't a programming question. Leave it and you may get valuable replies. Just wait.

              1 Reply Last reply
              0
              • realJSOPR realJSOP

                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

                S Offline
                S Offline
                spsharma
                wrote on last edited by
                #7

                Thank you John, that is what I think.

                1 Reply Last reply
                0
                • S spsharma

                  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).

                  N Offline
                  N Offline
                  Nemanja Trifunovic
                  wrote on last edited by
                  #8

                  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.


                  Programming Blog utf8-cpp

                  S 1 Reply Last reply
                  0
                  • N Nemanja Trifunovic

                    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.


                    Programming Blog utf8-cpp

                    S Offline
                    S Offline
                    spsharma
                    wrote on last edited by
                    #9

                    Nemanja Trifunovic wrote:

                    Hope it helps.

                    It will. I added these tools to my analysis list. Thank you Nemanja

                    1 Reply Last reply
                    0
                    Reply
                    • Reply as topic
                    Log in to reply
                    • Oldest to Newest
                    • Newest to Oldest
                    • Most Votes


                    • Login

                    • Don't have an account? Register

                    • Login or register to search.
                    • First post
                      Last post
                    0
                    • Categories
                    • Recent
                    • Tags
                    • Popular
                    • World
                    • Users
                    • Groups