How do you reproduce bugs that occur sporadically?

前端 未结 28 1200
离开以前
离开以前 2021-01-30 19:43

We have a bug in our application that does not occur every time and therefore we don\'t know its \"logic\". I don\'t even get it reproduced in 100 times today.

Disclaime

相关标签:
28条回答
  • 2021-01-30 20:11

    Add some sort of logging or tracing. For example log the last X actions the user committed before causing the bug (only if you can set a condition to match bug).

    0 讨论(0)
  • 2021-01-30 20:11

    For .NET projects You can use Elmah (Error Logging Modules and Handlers) to monitor you application for un-caught exceptions, it's very simple to install and provides a very nice interface to browse unknown errors

    http://code.google.com/p/elmah/

    This saved me just today in catching a very random error that was occuring during a registration process

    Other than that I can only recommend trying to get as much information from your users as possible and having a thorough understanding of the project workflow

    They mostly come out at night.... mostly

    0 讨论(0)
  • 2021-01-30 20:12

    Try to add code in your app to trace the bug automatically once it happens (or even alert you via mail / SMS)

    log whatever you can so when it happens you can catch the right system state.

    Another thing- try applying automated testing that can cover more territory than human based testing in a formed manner.. it's a long shot, but a good practice in general.

    0 讨论(0)
  • 2021-01-30 20:13

    Let’s say I’m starting with a production application.

    1. I typically add debug logging around the areas where I think the bug is occurring. I setup the logging statements to give me insight into the state of the application. Then I have the debug log level turned on and ask the user/operator(s) notify me of the time of the next bug occurrence. I then analyze the log to see what hints it gives about the state of the application and if that leads to a better understanding of what could be going wrong.

    2. I repeat step 1 until I have a good idea of where I can start debugging the code in the debugger

    3. Sometimes the number of iterations of the code running is key but other times it maybe the interaction of a component with an outside system (database, specific user machine, operating system, etc.). Take some time to setup a debug environment that matches the production environment as closely as possible. VM technology is a good tool for solving this problem.

    4. Next I proceed via the debugger. This could include creating a test harness of some sort that puts the code/components in the state I’ve observed from the logs. Knowing how to setup conditional break points can save a lot of time, so get familiar with that and other features within your debugger.

    5. Debug, debug , debug. If you’re going nowhere after a few hours, take a break and work on something unrelated for awhile. Come back with a fresh mind and perspective.

    6. If you have gotten nowhere by now, go back to step 1 and make another iteration.

    7. For really difficult problems you may have to resort to installing a debugger on the system where the bug is occurring. That combined with your test harness from step 4 can usually crack the really baffling issues.

    0 讨论(0)
  • 2021-01-30 20:14

    @p.marino - not enough rep to comment =/

    tl;dr - build failures due to time of day

    You mentioned time of day and that caught my eye. Had a bug once were someone stayed later at work on night, tried to build and commit before they left and kept getting a failure. They eventually gave up and went home. When they caught in the next morning it built fine, they committed (probably should have been more suspiscious =] ) and the build worked for everyone. A week or two later someone stayed late and had an unexpected build failure. Turns out there was a bug in the code that made any build after 7PM break >.>

    We also found a bug in one seldom used corner of the project this january that caused problems marshalling between different schemas because we were not accounting for the different calendars being 0 AND 1 month based. So if no one had messed with that part of the project we wouldn't have possibly found the bug until jan. 2011

    These were easier to fix than threading issues, but still interesting I think.

    0 讨论(0)
  • 2021-01-30 20:15

    Tons of logging and careful code review are your only options.

    These can be especially painful if the app is deployed and you can't adjust the logging. At that point, your only choice is going through the code with a fine-tooth comb and trying to reason about how the program could enter into the bad state (scientific method to the rescue!)

    0 讨论(0)
提交回复
热议问题