vote up -4 vote down star

I already solved this but thought I'd ask anyway...

I have a large application with a reasonably comprehensive test suite and unit test system. I was working on it and made a change that shouldn't have broken anything and suddenly dozens of test are failing. What should I do?

I'm looking for a list of things that help isolate bugs. Tips & tricks. That kind of thing.

I'll assume that test are atomic as in they can't be split or I can find the exact point in the test that an error is detected.

flag

50% accept rate
Dude, spell much. – dacracot Sep 24 '08 at 22:11
Spell check doesn't help if I click the wrong suggestion :b – BCS Sep 24 '08 at 22:15
@dacracot: Please don't hassle folks about spelling. English is one of the hardest languages to spell in and without spell check, I'd be lost. Even with it, I have a hard time getting the right spelling sometime. Let it go. (And don't downvote for spelling either!) – Jon Ericson Sep 24 '08 at 22:17
Hmm... i don't like the question only because it's a "how long is a piece of string". – aronchick Sep 24 '08 at 22:44

5 Answers

vote up 1 vote down

Quickly scan the failures. Find a case that you have some guess as to what's wrong. Debug that one.

The theory being that there is really only one or two bug (if you changed enough that that is a questionable assumption, good luck) and fixing one test cases will fix many others as well so you might as well fix the bug with an approach that is easy.

link|flag
vote up 2 vote down

Compare the new version of the code with the previous (tested) version and find your bug?

I'm not sure that answers your question though. What am I missing?


Having a good test suite goes a long way to debugging changes. Pat yourself or your team or your predecessor for doing things the right way. Those of us without test suites don't want to hear about it. ;-)

link|flag
vote up 1 vote down

One interesting experiment is to test out the original branch. Check out in a different directory and then run you test suite. Make sure that works properly. Then, I find the best thing is to compare a directory that's working fine with the one that's broken and just do binary search on a single representative test -

  • It worked up to this half way point there for it must be after
  • It failed at the 3/4 point, must be between 1/2 and 3/4.
  • etc.
link|flag
If you happen to be using git, there's a git-bisect feature that you can use to find the change that introduced the bug. Subversion also has a bisect option feature. – David Nehme Sep 25 '08 at 0:04
vote up 1 vote down

I often run one failing TestCase in isolation. I'll also turn on debug logging and take a close look at just one test.

If necessary, I've even created very focused test suites for this kind of work.

link|flag
I'm lucky enough in my current job that our test system is designed to make that trivial! – BCS Sep 25 '08 at 0:38
vote up 1 vote down

I would suggest that you take the simplest test that it is failing on and split that test up into two smaller tests. If one fails and the other succeeds then repeat. Essentially doing a binary split on the test until you get down to the lowest level and find the bug.

link|flag

Your Answer

Get an OpenID
or

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