Unformatted text preview:

1 Seems a bit abstract, add more examples? Discuss negligence, liability Perhaps assign Cem Kaner article to readStuff Exam 1 on Thursday New lab on the web soonLast Time Software perspective on power and energy management Mechanisms are provided by the HW people Frequency scaling Voltage scaling Sleep modes Analysis of HW + workload can give us ballpark estimate of whether there is a good match Policies are up to software But it’s often difficult to balance power, performance, and users’ convenienceToday Testing embedded software Kinds of tests When to test How to test Test coverage Fact: Most multithreaded Java programs run all of their test cases perfectly well when all locking is removed What does this mean?Testing Testing is the fundamental way that reliable embedded software is created However, good testing techniques are neither easy or intuitive Lots of basic questions: When to test? Who tests? Where do test cases come from? How to evaluate the result of a test? How much testing is enough?2The Testing Mindset Creating good tests for your own software is hard At least three reasons for this Microsoft (and other companies) separate testers from developers Different skill sets Good testers are adversarial Goal is to break the software This can lead to strained relations between developers and testers The best developers truly attempt to break their own codeKinds of Tests Functionality – testing functional behavior Interfaces – testing interaction with other systems Security – test for robustness to intrusion Standards – check for compliance Regression Testing whether everything works after the system has been changed Test cases derived from prior failures Resources – measuring required resources such as CPU time, memory, network bandwidth Load and stress – trying to overload the systemTest Levels Hardware unit test Hardware integration test Software unit test Software integration test HW/SW integration test System test Acceptance test Field testWhere do tests come from? Use cases Developer intuition Previous failures Boundary cases from specification Stress tests Random inputs Directed random / analysis-driven inputsWhen to Test Every combination of kind of test and test level should be run as early as is feasible Basic fact: Cost to fix a bug increases greatly as development progressesTesting by Developers Why? Defects cheaper to fix when found earlier High-quality parts make integration possible Defects found late are hard to map back to the source code Some kinds of tests are only possible at the unit level Developers understand the implementation, which can lead to better test cases Quality cannot be added at the end of development Has to be there from the start3Unit TestingDriverStubsUnit under testTest HarnessIntegration Testing Strategies Bottom-up Start with low-level modules with few dependencies Exercise them using drivers Top-down Overall control structure drives tests Stubs provided for nonexistant modules “Look and feel” of the system established early Big-bang Only works for small systems Useful for tightly coupled systems where top-down and bottom-up are difficultDesign for Test Term most often used in context of hardware Also applies to software How to do this? Lots of assertions for preconditions and postconditions Implement self-tests Provide test scaffolding along with code Expose all interfaces for testing Examples – how would you design these for test? Code to set PLL Code responding to an external interrupt sourceTest Oracles Test oracle – Code that tells us if the system is responding properly to tests Some oracles are easy Not working if the software crashes Not working if the software stops responding normally to inputs Not working if an assertion is violated Some oracles are very difficult E.g. is the aircraft responding properly to crosswind? Manual interpretation of the specification and test results typically requiredTest Coverage Coverage metrics try to answer the question: How can we know when to stop testing? Example metrics: Function coverage – are all functions executed? Statement coverage – are all statements executed? Branch coverage – is every possible decision executed at every branch? Path coverage – is every path through the code executed? Value coverage – is the full range of every variable covered? Mutation coverage – are all variants of the program covered? Exception coverage – are all exceptions signaled? In most cases goal is 100% coverageEvaluating Coverage Metrics Coverage metric must be understood by the user Near-complete coverage must be achievable Exceptions require fixing or manual review Some action should be taken upon reaching 100% coverage4Coverage of Concurrent SW Problem: Traditional test coverage metrics are in terms of sequential software Embedded software is concurrent What are some plausible metrics for concurrent software? Interrupt nesting coverage Interrupt preemption coverage Thread preemption coverage Synchronization coverage• Each lock “does interesting things”Stress Testing Test system at the limits of (and outside) its load parameters Intuition: This exposes different kinds of problems than regular test cases do Examples – how would you stress test: Embedded web server An RTOS A cell phone Tricky problem: Thinking of as many sources of stress as possibleStress Testing for Interrupts What bugs are we trying to find? How to do it? What if data comes along with the interrupt? How to tell when we’re done?Summary Embedded software is only as good as its test cases You should assume any conditions not tested will fail … because they will Developers perform early testing of components Requires adversarial mindset Requires wishful thinking to be ruthlessly suppressed Integration cannot possibly succeed without reliable components Summary: Test early Test often Test


View Full Document

U of U CS 5785 - Lecture Notes

Download Lecture Notes
Our administrator received your request to download this document. We will send you the file to your email shortly.
Loading Unlocking...
Login

Join to view Lecture Notes and access 3M+ class-specific study document.

or
We will never post anything without your permission.
Don't have an account?
Sign Up

Join to view Lecture Notes 2 2 and access 3M+ class-specific study document.

or

By creating an account you agree to our Privacy Policy and Terms Of Use

Already a member?