Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie
Hi there,
There is an issue with role permissions that is being worked on at the moment.
If you are having trouble with access or permissions on regional forums please post here to get access: https://www.boards.ie/discussion/2058365403/you-do-not-have-permission-for-that#latest

another way of saying "testing for memory leaks"

  • 19-10-2009 6:49pm
    #1
    Closed Accounts Posts: 5,284 ✭✭✭


    I am summarising future work to be done on a project.
    One thing I want to do is to test for memory leaks.
    I had that down as "optimisation" - but I don't mean that I want to optimise the code really, just check for memory leaks.
    Will I just say "Test for memory leaks"?


Comments

  • Registered Users, Registered Users 2 Posts: 1,322 ✭✭✭Mad_Max


    In my place we call them tasks, "Oh sh*t its crashed again, restart it quickly" :D

    If that doesn't work "Performance testing" would suffice imo.


  • Registered Users, Registered Users 2 Posts: 5,618 ✭✭✭Civilian_Target


    Stress tests generally test for all sorts of long-term leaks in programs


  • Registered Users, Registered Users 2 Posts: 40,038 ✭✭✭✭Sparks


    My stress tests tend to check more for high-load problems than for long-term problems :D

    Generally I'd just call it memory leak testing. No need to call it marmalade if it's just orange jam. (Of course, when it really is marmalade...)


  • Registered Users, Registered Users 2 Posts: 3,721 ✭✭✭E39MSport


    pwd wrote: »
    I am summarising future work to be done on a project.
    One thing I want to do is to test for memory leaks.
    I had that down as "optimisation" - but I don't mean that I want to optimise the code really, just check for memory leaks.
    Will I just say "Test for memory leaks"?

    Depends on the audience. I'd use 'Memory Management' or 'Physical Resource Management' if the audience is non technical.


  • Closed Accounts Posts: 5,284 ✭✭✭pwd


    E39MSport wrote: »
    Depends on the audience. I'd use 'Memory Management' or 'Physical Resource Management' if the audience is non technical.
    Yeah that's why I'm asking - I think most of the audience probably won't know what memory leak is.
    Thanks for the replies. I've put it under the heading of "Performance & Stress Testing."


  • Advertisement
  • Registered Users, Registered Users 2 Posts: 5,618 ✭✭✭Civilian_Target


    As a former Performance Tester, we generally considered:
    - Stress Test: Ability for the application to perform for prologed periods of constant use at a normal level. (Generally to test for resource leaks)
    - Performance Test: Evaluation of the maximum load of the application, (eg. maximum number of concurrent open sessions, maximum throughput of transactions per seond), and nature of the application's degradation at maximum load (eg. after max load for 1 hour, does the application then perform correctly at normal loads without a reboot)


Advertisement