Mistakes, Errors and Defects

Slides:



Advertisements
Similar presentations
VCE SD Theory Slideshows By Mark Kelly Vceit.com Debugging Techniques.
Advertisements

Computer Engineering 203 R Smith Project Tracking 12/ Project Tracking Why do we want to track a project? What is the projects MOV? – Why is tracking.
Copyright © 1994 Carnegie Mellon University Disciplined Software Engineering - Lecture 1 1 Disciplined Software Engineering Lecture #7 Software Engineering.
6/2/2015 Concept of Test Driven Development applied to Embedded Systems M. Smith University of Calgary, Canada 1 Automated Testing Environment Concepts.
Important concepts in software engineering The tools to make it “easy to apply common sense”!
Lab. 2 – More details – Tasks 4 to 6 1. What concepts are you expected to understand after the Lab. 2 is finished? 2. How do you demonstrate that you have.
Software and Hardware Circular Buffer Operations First presented in ENCM There are 3 earlier lectures that are useful for midterm review. M. R.
Important concepts in software engineering The tools to make it easy to apply common sense!
The Software Process Strategy The Software Process Strategy Part III.
Lab. 2 Overview 1. What concepts are you expected to understand after the Lab. 2 is finished? 2. How do you demonstrate that you have that knowledge?
© 2010 John Dalbey Ch 9: Reviews Humphrey proposes that personal reviews will result in improved quality. Now that we have a defined process and some real.
Getting the O in I/O to work on a typical microcontroller Ideas of how to send output signals to the radio controlled car. The theory behind the LED controller.
Exam Strategies for Essay Exams
Software Quality Chapter Software Quality  How can you tell if software has high quality?  How can we measure the quality of software?  How.
Humboldt University Berlin, University of Novi Sad, University of Plovdiv, University of Skopje, University of Belgrade, University of Niš, University.
1 Software Process and Project Metrics. 2 Normalization for Metrics.
Disciplined Software Engineering Lecture #7 Software Engineering Institute Carnegie Mellon University Pittsburgh, PA Sponsored by the U.S. Department.
CS 350, slide set 5 M. Overstreet Old Dominion University Spring 2005.
1 The Personal Software Process Estimation Based on Real Data* * Would Martin Fowler approve? “I want you to take this personally…”
Copyright © 1994 Carnegie Mellon University Disciplined Software Engineering - Lecture 7 1 Design and Code Reviews - Overview What are design and code.
Moving Arrays -- 1 Completion of ideas needed for a general and complete program Final concepts needed for Final Review for Final – Loop efficiency.
Blackfin Array Handling Part 1 Making an array of Zeros void MakeZeroASM(int foo[ ], int N);
Mistakes, Errors and Defects. 12/7/2015Mistakes, Errors, Defects, Copyright M. Smith, ECE, University of Calgary, Canada 2 Basic Concepts  You are building.
12/14/2015 Concept of Test Driven Development applied to Embedded Systems M. Smith University of Calgary, Canada 1 Automated Testing Environment Concepts.
Strategies for Essay Tests. Preparing for the test Know what is expected of you. What content will be covered? How many questions will be on the test?
“Lab. 5” – Updating Lab. 3 to use DMA Test we understand DMA by using some simple memory to memory DMA Make life more interesting, since hardware is involved,
Type I and II Errors Power.  Better Batteries a) What conclusion can you make for the significance level α = 0.05? b) What conclusion can you make for.
Developing Tasks to use with a co-operative scheduler Ideas for Assignment 2 Lab. 2, 3 and 4 Review for Midterm on Lab. 2 Ideas of defects, errors and.
Software Development. The Software Life Cycle Encompasses all activities from initial analysis until obsolescence Analysis of problem or request Analysis.
Generating a software loop with memory accesses TigerSHARC assembly syntax.
Software Development.
Software Metrics 1.
3.5 General feeling that knowledge of hydrology has improved … but more is needed.
Welcome to 3rd Grade Mathematics
Etrics XP Metrics.
PSP Class Practice 1 MARCIA begins work her program [10:00] by reviewing the requirements in the assignment package, including the test requirements, to.
Moving Arrays -- 1 Completion of ideas needed for a general and complete program Final concepts needed for Final Review for Final – Loop efficiency.
Lab. 2 Overview – Earlier Tasks Prelaboratory T1, T3, T4 and T5
Janet has used PSP for the last 6 months
Software and Hardware Circular Buffer Operations
Generating “Rectify( )”
A Play Core Timer Interrupts
Project Planning is a waste of time!!!
Introduction to Test Driven Development
Automated Testing Environment
Thermal arm-wrestling
Trying to avoid pipeline delays
Winter 2018 CISC101 12/2/2018 CISC101 Reminders
Handling Arrays Completion of ideas needed for a general and complete program Final concepts needed for Final.
Lab. 2 – More details – Later tasks
VisualDSP++ and Test Driven Development What happened last lecture?
Moving Arrays -- 1 Completion of ideas needed for a general and complete program Final concepts needed for Final Review for Final – Loop efficiency.
Moving Arrays -- 2 Completion of ideas needed for a general and complete program Final concepts needed for Final DMA.
Thermal arm-wrestling
Using Arrays Completion of ideas needed for a general and complete program Final concepts needed for Final.
A Play Lab. 2 Task 8 Core Timer Interrupts
Moving Arrays -- 2 Completion of ideas needed for a general and complete program Final concepts needed for Final DMA.
Handling Arrays Completion of ideas needed for a general and complete program Final concepts needed for Final.
Getting serious about “going fast” on the TigerSHARC
General Optimization Issues
Explaining issues with DCremoval( )
Lab. 4 – Part 2 Demonstrating and understanding multi-processor boot
Handling Arrays Completion of ideas needed for a general and complete program Final concepts needed for Final.
An Introduction to Debugging
Thermal arm-wrestling
A first attempt at learning about optimizing the TigerSHARC code
Review of Previous Lesson
Working with the Compute Block
IE 360: Design and Control of Industrial Systems I
A first attempt at learning about optimizing the TigerSHARC code
Presentation transcript:

Mistakes, Errors and Defects

Basic Concepts You are building a project. The project is made up of “phases”. You complete a phase of the project and then move onto the next phase In the Lab., some people would consider each “task” as a “phase” Some people would call each part of a task a phase The key element is – you decide a “phase” for your project, and then you decide whether you have completed that “phase” and can move onto the next stage, or whether you have to keep working to make this phase work 5/3/2019 Mistakes, Errors, Defects , Copyright M. Smith, ECE, University of Calgary, Canada

Mistakes in a project with 3 tasks Task 1 – 100 LOC – Lines of Code 7 Task 1 mistakes are made (developer does not know this) BUT ONLY 3 Task 1 mistakes are discovered before moving onto Task 2 Task 2 -- 100 LOC – Lines of Code 5 Task 2 mistakes are made (developer does not know this) BUT ONLY 3 Task 2 mistakes (errors) are discovered before moving onto Task 3 1 mistake (defect) made in Task 1 is discovered and fixed Task 3 -- 200 LOC – Lines of Code 2 Task 3 mistakes have been discovered and fixed – at this point in time in the project 1 mistake from Task 1 has been discovered and fixed – at this point in time in the project 1 mistake from Task 2 has been discovered and fixed – at this point in time in the project ? mistakes have been made ? Defects will be fixed? PRODUCT IS RELEASED AFTER THE DEVELOPER “COMPLETES” T3 HOW MANY PROBLEMS LEFT IN THE PROJECT 5/3/2019 Mistakes, Errors, Defects , Copyright M. Smith, ECE, University of Calgary, Canada

Questions to ask How many mistakes is it likely that the programmer will make during Task 3? How many mistakes made during Task 3, will the programmer find in Task 3 (errors) before deciding to releasing the project to the customer? How likely is it that the programmer will, during Task 3, find any mistakes (defects) left behind from Task 2? How many mistakes (defects) can be expected to be left behind after the product has been released? 5/3/2019 Mistakes, Errors, Defects , Copyright M. Smith, ECE, University of Calgary, Canada

Errors and Defect Mistake – anything you do wrong (including misreading the manual) Error – are mistakes you make in “ this phase” of the project and FIND before moving on to the “next phase” of the project. Defects – are mistakes you make in “ this phase” of the project and DON’T FIND before moving on to the “next phase” of the project There is no mention of what constitutes an error or a defect – it is anything you do wrong! Includes misreading the manual Errors and defects can both be syntax errors or logical errors. The difference is one of time -- “when (in the project) did you find the mistake” 5/3/2019 Mistakes, Errors, Defects , Copyright M. Smith, ECE, University of Calgary, Canada

How many errors and defects in this code? Can’t answer the question, until you define “phase of a project” and also know the code-review habits of the programmer. Humphreys suggests – code + assembler + link = 1 phrase 5/3/2019 Mistakes, Errors, Defects , Copyright M. Smith, ECE, University of Calgary, Canada

How many errors and defects in this code? Editor is suggesting syntax errors in Po and JMP (colour coding). Would be found by assembler Formatting is suggesting an error in the loop as there should be 4 non-indented lines There are in fact 8 other mistakes in the code. How many would be caught by assembler? 5/3/2019 Mistakes, Errors, Defects , Copyright M. Smith, ECE, University of Calgary, Canada

Better – after a code-review There are still 2 mistakes in code. A warning will be issued by the assembler and will then cause a fatal error with the linker A mistake that will not be caught by the assembler or linker 5/3/2019 Mistakes, Errors, Defects , Copyright M. Smith, ECE, University of Calgary, Canada

Errors and defects recognized When should project be released? Task 1 – 100 LOC – Lines of Code 7 Task 1 mistakes were made (we don’t know this) BUT ONLY 3 Task 1 mistakes (errors) are discovered before moving onto Task 2 Task 2 -- 100 LOC – Lines of Code 5 Task 2 mistakes were made (we don’t know this) BUT ONLY 3 Task 2 mistakes (errors) are discovered before moving onto Task 3 1 mistake (defect recovered) made in Task 1 is discovered and fixed Task 3 -- 200 LOC – Lines of Code 2 Task 3 mistakes (errors) have been discovered and fixed – at this point in time 1 mistake from Task 1 (defect recovered) has been discovered and fixed – at this point in time 1 mistake from Task 2 (defect recovered) has been discovered and fixed – at this point in time ? mistakes have been made ? Defects will be fixed? PRODUCT TO BE RELEASED AFTER THE DEVELOPER “COMPLETES” TASK 3! 5/3/2019 Mistakes, Errors, Defects , Copyright M. Smith, ECE, University of Calgary, Canada

Should the developer release the project? Can’t really tell with this small amount of data – metrics should be gathered over many projects. Personal Software Process Will demonstrate the principles 5/3/2019 Mistakes, Errors, Defects , Copyright M. Smith, ECE, University of Calgary, Canada

Based on the available data Developer does not know whether a mistake has been made Developer only knows about errors recognized and defects recovered Task 1 – 100 LOC – Lines of Code 3 Task 1 mistakes (errors) are discovered before moving onto Task 2 Task 2 -- 100 LOC – Lines of Code 3 Task 2 mistakes (errors) are discovered before moving onto Task 3 2 mistake (defect recovered) made in Task 1 is discovered and fixed 1 mistake (defect recovered) made in Task 2 is discovered and fixed Based on this data – developer makes 9 mistakes per 200 lines of code developed – 45 / kLOC -- Actually making 60 / kLOC but doesn’t know that till later. Task 3 (assuming same level of complexity as Task 2 and 3) has 200 LOC and there fore the developer is probably making 9 +- 2 mistakes I reckon that I am having a good day if I can get below 80 kLOC, but that is because I am not spending enough time fixing my development process. What’s your real mistake rate 5/3/2019 Mistakes, Errors, Defects , Copyright M. Smith, ECE, University of Calgary, Canada

Mistake Recovery Efficiency -- MRE How to calculate Mistake Recovery Efficiency Errors found for a = ------------------------------------- given project phase Mistakes found (Errors + Defects) Can’t really be calculated for THIS project till the project is finished (Must have past history available) Task 1 3 mistakes are discovered before moving onto Task 2 3 ERRORS FOUND 1 defect found in Task 2 and another in Task 3 2 DEFECTS FOUND Mistake Recovery Efficiency = MRE = 3 / 5 = 60% recovery calculated Actually (but we can’t measure that ) True MRE is 3 / 7 – lower than 60% Task 2 3 mistakes are discovered before moving onto Task 3 3 ERRORS 1 mistake made in Task 2 is discovered and fixed 1 DEFECT RECOVERY Mistake Recovery Efficiency = MRE 3 / 4 = 75% recovery Average MRE = (60 + 75) / 2 = 67.5% (2/3) 5/3/2019 Mistakes, Errors, Defects , Copyright M. Smith, ECE, University of Calgary, Canada

Task 3 Problems with final customer code How many? – based on MRE Task 1 – 100 LOC 7 mistakes are made – expecting only 4.5 in this amount of code 3 mistakes are discovered before moving onto Task 2 3 ERRORS Task 2 – 100 LOC 5 mistakes are made – expecting only 4.5 in this amount of code 3 mistakes are discovered before moving onto Task 3 3 ERRORS 1 mistake made in Task 1 is discovered and fixed 1 DEFECT RECOVERY Task 3 – 200 LOC -- Based on LOC developed – 9 errors in 200 LOC 2 mistakes have been identified 2 ERRORS 1 mistake from Task 1 has been discovered 1 DEFECT RECOVERY 1 mistake from Task 2 has been discovered 1 DEFECT RECOVERY PRODUCT RELEASE HOW MANY PROBLEMS? This programmer averages MRE = 67.5% in each phase – therefore expect that of the 9 mistakes probably made in task 3 – 9 * 0.675 of those will be found (6.3). Has found 2 errors already Can expect to find another 4 errors based on past performance 3 defects left will probably be left in customer code from Task 3 5/3/2019 Mistakes, Errors, Defects , Copyright M. Smith, ECE, University of Calgary, Canada

Problems with final customer code From Defects left over from T1 and T2 Task 1 – 100 LOC Expect 4.5 mistakes to be made 3 mistakes are discovered before moving onto Task 2 3 ERRORS 2 defects recovered (Task 2 and 3) -- probably no more defects left Task 2 – 100 LOC 3 mistakes are discovered before moving onto Task 3 3 ERRORS 1 mistake made in Task 2 is discovered and fixed in T3 1 DEFECT RECOVERY PRODUCT RELEASE HOW MANY PROBLEMS? This programmer averages MRE = 67.5% in each phase – therefore expect that of the 9 mistakes probably made in task 1 and 2 – 9 * 0.675 of those will be found (6.3). Has found 9 errors already Based on the statistics from this project – developer has found all problems in Task 1 and probably most in Task 2 5/3/2019 Mistakes, Errors, Defects , Copyright M. Smith, ECE, University of Calgary, Canada

If you are going to do this sort of metrics seriously The programmer needs to know their own MRE and Defect Recovery Rate. Must collect “metrics” from past experiences The programmer needs to know need to know whether the tasks were of equal difficulty A more difficult task can be expected to cause more than the average number of defects Is this a safety critical task Might spend more time looking for possible defects (Perhaps write more tests (TLD)) Time estimation – how long will the product take to develop? How big is the product? Learn estimation skills What is your efficiency (lines of debugged code / hour)? Errors / 1000 lines of code? Defects / 1000 lines of code? How long does it take you to fix a “typical” error or defect? When fixing errors and defects – how many new mistakes do you introduce for each one you fix? (Industry about 1 in 3) What are your most common mistakes? And what are you doing to fix them in time for final exam and post-lab 3 quiz 5/3/2019 Mistakes, Errors, Defects , Copyright M. Smith, ECE, University of Calgary, Canada

Example on Errors / Defects / Mistakes Possible Final Exam question A student is doing 5 tasks – all roughly the same size and difficulty. You know that the students MRE = 60% and DRE = 20% Task 1 10 errors discovered Task 2 5 errors discovered 2 defects from Task 1 found Task 3 10 errors discovered 1 defects from Task 1 + 2 defects from Task 2 found Task 4 12 errors discovered 1 defects from Task 1 + 2 defects from Task 2 + 2 defects from Task 3 found Task 5 10 errors discovered 2 defects from Task 2 + 2 defects from Task 3 + 1 defect from Task 4 Explain both qualitatively (reasonability argument) and quantitatively (number argument) the following issues The programmer moved onto Task 3 from Task 2 at the correct time – true or false The programmer should stop working on Task 5 and release the product Why is impossible in Task 5 to discover a defect from Task 5 This programmer has been using test first development (test driven development). Explain why you might think that this student does not know how to write TDD tests (some people are good at testing and some are not) Looking back at your previous classes – make an estimate of your MRE and DER rates Make a comment on what you feel is your MRE and DER rates now Has TDD helped you or hindered you? Some people feel that writing tests before coding takes longer that writing tests after the coding. In theory – since you need the same tests – this is not true. But in practice it often is true – explain the discrepancy What is the difference between a unit test and a system test? Using one of your labs as an example give details of a unit test and a system test? 5/3/2019 Mistakes, Errors, Defects , Copyright M. Smith, ECE, University of Calgary, Canada

Some more practice on loops and arrays Some more practice on loops and arrays. Indexing through arrays array(count) = 2; How many errors and defects if you define errors as being “found before assembler is used” 5/3/2019 Mistakes, Errors, Defects , Copyright M. Smith, ECE, University of Calgary, Canada

5/3/2019 Mistakes, Errors, Defects , Copyright M. Smith, ECE, University of Calgary, Canada

5/3/2019 Mistakes, Errors, Defects , Copyright M. Smith, ECE, University of Calgary, Canada

Array(count) = count 5/3/2019 Mistakes, Errors, Defects , Copyright M. Smith, ECE, University of Calgary, Canada

Hardware loop – 11 syntax errors 5/3/2019 Mistakes, Errors, Defects , Copyright M. Smith, ECE, University of Calgary, Canada

What defects are present? 5/3/2019 Mistakes, Errors, Defects , Copyright M. Smith, ECE, University of Calgary, Canada

Getting ready to go “really fast” 5/3/2019 Mistakes, Errors, Defects , Copyright M. Smith, ECE, University of Calgary, Canada

5/3/2019 Mistakes, Errors, Defects , Copyright M. Smith, ECE, University of Calgary, Canada

Blackfin in “full parallel operation” 5/3/2019 Mistakes, Errors, Defects , Copyright M. Smith, ECE, University of Calgary, Canada