Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the difference between a critical and a major bug in software testing?

Tags:

testing

I want to clarify my definition of a critical and a major bug in software testing According to my understanding a critical bug is one which does not have a work around solution and a major bug is one which does. (Please correct me if i am wrong) But HOW does a tester determine whether or not a bug will have a work around solution or not??

like image 823
user2354592 Avatar asked Feb 01 '14 08:02

user2354592


People also ask

What is a critical bug in software testing?

Critical Bug means each of the following: 18.1. Bugs, malfunctions, or operational problems that cause the System to be inoperable or that affect the detection of Duplicate Enrollments.

What is major bug in testing?

Major: Bug capable of collapsing large parts of the system. Critical: Bug capable of triggering complete system shutdown.

What is a critical bug?

A test engineer will write up a bug as critical if it makes the system undeliverable, eg 'system consistently crashes after 255 transactions have been made, corrupting the tables'.

What is meant by major bug?

Major bug: Danger to human life; Damage to equipment; Program crash; Requires power cycle to recover; Loss of user data; critical calculation incorrect; etc.


1 Answers

I use the terminology

blocker - the functionality does not work in main area (businness cannot be provided)

critical - the functionality does not work in main area but there is a work around

major - the functionality does not work but not in main area (business can be provided)

minor - there are user interface problems or functional but in area which is used rarely

trivial - misspellings

Testers do not decided about solutions but can say their opinion.

like image 63
Kinga Avatar answered Sep 21 '22 08:09

Kinga