Menu
Home Explore People Places Arts History Plants & Animals Science Life & Culture Technology
On this page
Shotgun debugging
Making haphazard or diverse changes to software in the hope that a bug will be perturbed out of existence

Shotgun debugging can be defined as:

  • A process of making relatively un-directed changes to software in the hope that a bug will be perturbed out of existence.
  • Using the approach of trying several possible solutions of hardware or software problem at the same time, in the hope that one of the solutions (typically source code modifications) will work.

Shotgun debugging has a relatively low success rate and can be very time-consuming, except when used as an attempt to work around programming language features that one may be using improperly. When combined with domain expertise and a strong intuition for the underlying codebase, it can be a good starting point to gut-solve a buggy piece of code a few times before formally researching the corresponding error message. When used in this way, it may be a valuable technique that is faster than browsing through the Internet searching a particular error message every time.

We don't have any images related to Shotgun debugging yet.
We don't have any YouTube videos related to Shotgun debugging yet.
We don't have any PDF documents related to Shotgun debugging yet.
We don't have any Books related to Shotgun debugging yet.
We don't have any archived web articles related to Shotgun debugging yet.

Examples

Shotgun debugging can occur when working with multi-threaded applications. Attempting to debug a race condition by adding debugging code to the application is likely to change the speed of one thread in relation to another and could cause the problem to disappear. This is known as a Heisenbug. Although apparently a solution to the problem, it is a fix by pure chance and anything else that changes the behavior of the threads could cause it to resurface — for example on a computer with a different scheduler. Code added to any part of the program could easily revert the effect of the "fix".

See also

This article is based in part on the Jargon File, which is in the public domain.

References

  1. Definitions for Shotgun debugging http://www.definitions.net/definition/shotgun%20debugging

  2. "The Jargon File: shotgun debugging". http://catb.org/jargon/html/S/shotgun-debugging.html

  3. DEFINITION shotgun debugging Posted by: Margaret Rouse WhatIs.com http://searchsoftwarequality.techtarget.com/definition/shotgun-debugging