vote up 2 vote down star
1

What is statistical debugging? I haven't found a clear, concise explanation yet, but the term certainly sounds impressive.

Is it just a research topic, or is it being used somewhere, for actual development? In other words: Will it help me find bugs in my program?

flag

43% accept rate

2 Answers

vote up 1 vote down

that's when you ship software saying "well, it probably works..." ;-)

EDIT: it's a research topic where machine learning and statistical clustering are used to try to find patterns in programs that are good predictors of bugs, to identify where more bugs are likely to hide.

link|flag
Would downvote you, @SAL, since I prefer to see humor without helpfulness in comments rather than answers. But that wouldn't be fair. – paxdiablo Feb 3 at 4:00
@Pax: That wouldn't be fair since your answer was a made-up guess, too? OK, edited to include something "useful". – Steven A. Lowe Feb 3 at 4:32
vote up 0 vote down

It sounds like statistical sampling. When you buy a product, there's a good chance that not every single product coming off the "assembly line" has been checked for quality.

Statistical sampling calls for checking a certain percentage of products to (almost) ensure they're all problem-free.

It minimizes the effort at the risk of some problems sneaking through.

To be honest, unless you're checking every single execution path and every single possible input value, you're already doing this in your testing. The amount of effort required to test everything for any but the most simplistic systems is not worth it. The extra cost would make your product a non-compete item.

Note that statistical sampling doesn't just involve testing every 100th unit. There are ways to target the sampling to improve the chance of catching problems. For example, if historical data suggests most errors are introduced at a specific phase, target that phase. If one of your developers is more problematic than others, check his stuff more closely.

From what I can see from a cursory glance at some research papers, statistical debugging is just that - targeting areas based on past history of problems.

I know we already do this for our software. Since any bugs that get fixed have to pass unit and system tests that replicate the problem (and our TDD says these tests should be written before trying to fix the bug), those tests are automatically added to the regression test suite so that those areas that cause more problems naturally are tested more often in the future.

link|flag
i would downvote this answer because it's wrong, but since you're trying to be helpful (instead of just googling) that wouldn't be fair ;-) – Steven A. Lowe Feb 3 at 4:34
Saw the smiley but, if it is wrong, let me know why. The first bit was conjecture but the rest was based on actual investigation (you're right though, I'm no domain expert). Still, I'd rather delete it than mislead someone (or worse, get downvoted by an actual domain expert). – paxdiablo Feb 3 at 4:43
possibly not wrong, just incomplete - there are a number of statistical debugging methods, including gathering user data from program crashes, automated testing, etc. Frankly the OP could have searched google and found the same information so this whole thread is probably pointless... – Steven A. Lowe Feb 3 at 15:18
I don't think it's useless (maybe because I was the one who created it)! The information on the web seems useless or at least there is no easy explanation out there. Google gives me links to research papers, which are hard to understand. So I hoped to get some SO-typical understandable answer. – dehmann Feb 6 at 6:36
It isn't useless because it's the same sort of quality control that "real" manufacturers use (the ones who, if their cars explode, find themselves at the pointy end of a billion-dollar lawsuit). Same as optimization: find/target problem areas. No point testing code that's been bugfree for 20 years. – paxdiablo Feb 6 at 6:50

Your Answer

Get an OpenID
or

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