CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

View Poll Results: At work, does your team develop new features while there are still open bugs?

Voters
10. You may not vote on this poll
  • Never.

    0 0%
  • Only if a deadline has passed.

    0 0%
  • Not usually, but it really depends on the bugs.

    2 20.00%
  • All the time, it's a common practice.

    8 80.00%
Results 1 to 8 of 8
  1. #1
    Join Date
    Jan 2006
    Location
    Belo Horizonte, Brazil
    Posts
    405

    At work, does your team develop new features while there are still open bugs?

    If you mark "depends on the bugs", would you mind specifying what aspects you consider?
    Last edited by ltcmelo; September 21st, 2009 at 03:32 PM.

  2. #2
    Join Date
    Feb 2002
    Posts
    4,640

    Re: At work, does your team develop new features while there are still open bugs?

    Yes, we do. Our codebase is so large, and diverse, if we were to stop to fix all of the bugs, we would never have time to develop new features, and loose customers left and right.

    Viggy

  3. #3
    Join Date
    Mar 2004
    Location
    Prague, Czech Republic, EU
    Posts
    1,701

    Re: At work, does your team develop new features while there are still open bugs?

    I think it strongly depends on the team structure and the quality of project management. If there are capacities (free developers) and the project is well managed, bugs and features can be processed together.
    • Make it run.
    • Make it right.
    • Make it fast.

    Don't hesitate to rate my post.

  4. #4
    Arjay's Avatar
    Arjay is offline Moderator / EX MS MVP Power Poster
    Join Date
    Aug 2004
    Posts
    13,490

    Re: At work, does your team develop new features while there are still open bugs?

    Generally most bugs are classified by severity and priority. It's common for both to have a numeric ranking with a 1 being the most important (highest priority or greatest severity). The low end of the scale usually is a 4 or a 5 depending on the organization (lowest pri and sev).

    P1/S1 bugs are usually fixed asap. P5/P5 bugs are never fixed (JK).

    In terms of bugs, it's reasonable to have a P1/S5 (an example of this would be high profile typo bug). Similarly, it's possible to have low priority, high severity bug (such as a crashing bug that is unlikely to ever get hit by a customer scenario).

    Given these classifications, it's perfectly reasonable to develop new features with open bugs.

  5. #5
    Join Date
    Jun 2008
    Posts
    2,477

    Re: At work, does your team develop new features while there are still open bugs?

    Like Arjay said, we do not ship with active P1 - P3 bugs. However, there are all sorts of lingering P4 and P5 bugs out there that will most likely never be fixed. It is not worth spending time on those at the expense of adding value to the product.

  6. #6
    Join Date
    Feb 2002
    Posts
    4,640

    Re: At work, does your team develop new features while there are still open bugs?

    Quote Originally Posted by Arjay View Post
    P1/S1 bugs are usually fixed asap. P5/P5 bugs are never fixed (JK).
    Actually, we do have a "Never Fix" category in our bug tracking system. There are those bugs, that you will never fix because (a) customers have a 0.001% chance of hitting them (and you have a workaround), or (b) they are in "soon to be obsolete" pieces of code.

    Viggy

  7. #7
    Join Date
    Jul 2007
    Location
    Illinois
    Posts
    517

    Re: At work, does your team develop new features while there are still open bugs?

    At my company, we don't even have a "Priority/Severity" bug database. Were such a small company that whenever a bug is found my boss usually just lets me know and I fix it there on the spot irregardless of its severity. I hope to change that in the future by playing a role more suited to project lead so we can get this whole thing organized. But in a company of about 12 people it isn't feasible at this time, we don't even have a dedicated tester on board yet
    R.I.P. 3.5" Floppy Drives
    "I know not with what weapons World War III will be fought, but World War IV will be fought with sticks and stones." - Albert Einstein

  8. #8
    Join Date
    Jan 2006
    Location
    Fox Lake, IL
    Posts
    15,007

    Re: At work, does your team develop new features while there are still open bugs?

    Same. Apps go thru test processes, by partner/user. Lots of bugs get fixed immediately, but they all get fixed before upgrades go out
    David

    CodeGuru Article: Bound Controls are Evil-VB6
    2013 Samples: MS CODE Samples

    CodeGuru Reviewer
    2006 Dell CSP
    2006, 2007 & 2008 MVP Visual Basic
    If your question has been answered satisfactorily, and it has been helpful, then, please, Rate this Post!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured