up vote 6 down vote favorite
1
share [g+] share [fb]

At various times in my career I have encouraged staff I worked with and/or managed to track defects in artifacts of the development process other than source code (i.e. requirements, tests, design). Each time the request has been met with astonishment, confusion and resistance. It seems so obvious to me that I'm always a little shocked when people resist the idea.

What we get from this exercise is a picture of where bugs are created and where they are found (in what part of the process). If we are building bad requirements then we we'll know it and can work to improve them.

Is anyone else collecting information on defects not in source code?

link|improve this question

For clearification: Do you track defects in things other than source code? – Jim Blizard Dec 15 '08 at 19:09
you could track defects in your co-workers, but they might not like it! – Steven A. Lowe Dec 15 '08 at 19:23
like wall street? – annakata Dec 15 '08 at 19:58
feedback

9 Answers

up vote 10 down vote accepted

Yes, track them all.

Documentation, design docs, requirements, etc.

I am also as astonished as you when I hear "arguments" against it.
At the very least the tracking system should be able to identify where the defect was found and what part of the process it was injected.

link|improve this answer
feedback

Absolutely. Just look at Ubuntu Bug #1.

link|improve this answer
That's ... a 404. Are you trying to be ironic? – Dan Esparza Dec 15 '08 at 19:39
feedback

Yes, definitely. The artifacts surrounding your code--models, specs, doco, requirements info, use cases, etc--can all contain errors that affect the code itself.

link|improve this answer
feedback

Normally bug tracking systems have an assumption that they're a list of things that are to be fixed or implemented. Tracking bugs in requirements or other documentation (e.g. task lists) doesn't seem like it's the same thing. It's more a matter of keeping records so you can trend problems and evaluate if you're making fewer of them.

I'm tracking them, but outside of our bug tracking system.

link|improve this answer
so you advocate two or more tracking systems? That seems counterintuitive and a waste of time and resources. – Tim Dec 15 '08 at 19:10
You still need to fix the bug, even if it's a bug in the documentation. – Stephen Wrighton Dec 15 '08 at 19:14
an argument for an open source tracker. just search and replace "bug" with "interesting situation"... – DarenW Dec 15 '08 at 19:19
I'm advocating two tracking systems with very different properties. That or a single tracking system that we configure better than our existing bug tracking system, which is not well suited for tracking things like "project manager forgot to update X in handout for meeting Y". – edebill Dec 15 '08 at 19:21
feedback

Well duh... anything you can improve, do what can to improve!

Treating it all as bug tracking makes sense - opinion will vary, as you note - but using one tracking system would give a coherent big picture of it all, let tasks be assigned, etc. Maybe a demo, a slide show or something aimed at using these systems in ways beyond the original source code tracking - pictures convince more than words.

link|improve this answer
feedback

I've normally tracked the source of all defects. They may get fixed in the code, but they don't necessarily get caused by that.

Wrong requirement, wrongly interpreted requirement, bad design, developer brainf*rt, bad documentation, wrong test, missing test, outdated test, code that doesn't do what the developer does, tool/compiler error (very rare, in my view), build system problem....

To me, they're all "the system doesn't do what the customer wants it to do", and all indicate something must be changed in order to make it do what the customer wants it to do. Arguing whether it's defect or feature, or a source code bug or some other issue distracts from addressing the issues to me.

link|improve this answer
feedback

One biggie that no one seems to have mentioned is to start a database of bad smells and traps for use when performing peer reviews.

This is an invaluable resource for the peers actually performing the review.

It definitely pays off in the long term. This should also be a live document, database, etc. that is added to as:

  • bugs are fixed
  • as peers perform reviews, and
  • as new blood arrives to join the team(s) bringing with them new knowledge and experience.

HTH.

cheers,

Rob

link|improve this answer
feedback

aboslutely. if your process is well enough along to trace back source of defect to orgin great. it helps customers and designers qualify the constraints in which they operate.

customer: develop robot to cut grass where all blades of grass are to be cut to a precise uniform length

designer: we will use left-handed kindergarten scissors mounted perpendicular to the ground ensure crisp/precise cuts

QA: cuts are precise.

customer: why does it take the robot 6 days to cut grass. we need in in 30 mins or less!

clearly tracking the source of the performance defect can help in molding conversations and improving the process going forward.

link|improve this answer
feedback

We track bugs in software, errors in documents, errors in drawings, and requests for new features all using the same track tool.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.