How much does a process help in improving quality of shipping software ? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T05:14:57Z http://stackoverflow.com/feeds/question/140846 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/140846/how-much-does-a-process-help-in-improving-quality-of-shipping-software 1 How much does a process help in improving quality of shipping software ? computinglife 2008-09-26T17:36:15Z 2008-09-27T01:47:03Z <p>I would like your opinion (through experience) of implementing stricter processes in the aim of improving quality of shipping software. Assume a fairly large software with lots of processes(89) and databases and messaging, IPC, sockets, web servers and the full works (enterprisy made in Java). Some parts are fairly messy (1000 line functions and the sort) but theres a failry large collection of work done in handling itsy bitsy corner cases too. </p> <p>Would implementing failry strict process like code reviews for every bug fixes, static analysis runs for all code changes be enough to turn around the product ? What policies have you encountered that really made code reviews happen, rather than a cursory glance and a perfunctory pass to the code being reviewed ? </p> <p>What other steps / metrics (that you have seen being implemented successfully) would you suggest to increase quality? </p> <p>+Edit : - The rescue program is being brought in by the managament for the said program and is not a single developer lead venture. Wondering if this is all it takes - a commitment to quality from upper layers and some process to create quality software. </p> <p>+Edit - The software is already shipping with a lot of customers and has started to bring in dollars of late, which has also suddenly caused hundreds of new defects to be found and reported by the users themselves. </p> <p>+Edit - The development team is distributed in small chunks under 4 managers in different locations. The dev team size is around 40 and about the same number of folks exists in testing. </p> http://stackoverflow.com/questions/140846/how-much-does-a-process-help-in-improving-quality-of-shipping-software/140900#140900 0 Answer by MikeJ for How much does a process help in improving quality of shipping software ? MikeJ 2008-09-26T17:45:12Z 2008-09-26T17:45:12Z <p>TDD is proably the easiest and most fundamental change that can improve your code. tests and lots of them can serve as the platform on which you work and verify that your product is a good one. from that change/maintenance can be checked and managed against a given known.</p> http://stackoverflow.com/questions/140846/how-much-does-a-process-help-in-improving-quality-of-shipping-software/140909#140909 0 Answer by Jeff C for How much does a process help in improving quality of shipping software ? Jeff C 2008-09-26T17:46:34Z 2008-09-26T17:56:52Z <p>Different levels of software process are called for in different situations. Two guys in a garage creating the next Visicalc should work differently than a team of hundreds working on space shuttle software.</p> <p>That said, I find code reviews (actually what many folks call walkthroughs) are useful in any environment. I review every checkin with a peer, using the source code control system to view differences, and justifying each one out loud to the reviewer.</p> <p>Often, just stating the purpose of a change and what it is supposed to do will cause me to see an error in my own work, before the reviewer notices it.</p> http://stackoverflow.com/questions/140846/how-much-does-a-process-help-in-improving-quality-of-shipping-software/140941#140941 0 Answer by amo for How much does a process help in improving quality of shipping software ? amo 2008-09-26T17:52:32Z 2008-09-26T17:52:32Z <p>Ask, out loud, questions like</p> <ul> <li>What kinds of inputs will cause this function to behave improperly?</li> <li>What kinds of outputs will cause this function to mess up the calling function?</li> <li>What pie in the sky scenario will cause this code to behave improperly?</li> <li>Are there any race conditions? Security holes?</li> <li>What happens the <em>second</em> time this code is called? Is everything initialized properly?</li> <li>What if the user does something unexpected?</li> <li>Is this code unclear in any way? (A clarifying comment may be required.)</li> <li>Is the code written in a way that might encourage a future editor to introduce a race condition, security hole, or other problem?</li> <li>Does the code conform to company standards?</li> <li>This list is incomplete but you get the idea</li> </ul> <p>Having an explicit checklist can help break through the tendency to say "So-and-so is smart, I'm sure it works fine."</p> http://stackoverflow.com/questions/140846/how-much-does-a-process-help-in-improving-quality-of-shipping-software/140945#140945 0 Answer by Turnkey for How much does a process help in improving quality of shipping software ? Turnkey 2008-09-26T17:52:55Z 2008-09-26T17:52:55Z <p>Create a strict commercialization process whereby a commercialization group (can include devs if no QA group is available) does final release testing on the product and approves the release. They are also responsible for testing clean installs and upgrades to the new release. That group is also responsible for packaging and distributing the release.</p> http://stackoverflow.com/questions/140846/how-much-does-a-process-help-in-improving-quality-of-shipping-software/140949#140949 1 Answer by Erdrick01 for How much does a process help in improving quality of shipping software ? Erdrick01 2008-09-26T17:53:12Z 2008-09-26T17:53:12Z <p>You've asked some great questions, and it sounds like that your product is in despair. With a project that large, it will take considerable time (ie, more than a week or even a month) before you start to see large scale results, but here are some suggestions:</p> <ul> <li>Implement <a href="http://www.junit.org/" rel="nofollow">JUnit</a> for unit testing</li> <li>Investigate <a href="http://ant.apache.org/" rel="nofollow">Ant</a> for automated nightly builds</li> <li>Instead of having code reviews for ALL bugs, perhaps just have code reviews for the large and more severe bugs, and allow JUnit to be sufficient for the small issues.</li> <li>get management support</li> </ul> <p>What ever you do, if you do not have management's support, and someone at that level to champion this effort it will be hard for a developer to convince all of your coworkers to modify their way of doing business.</p> <p>In addition, I've got a few questions for you - is this software "shipped" to external customers outside the company, or is it only used by customers internal to your company? How big is your development team?</p> http://stackoverflow.com/questions/140846/how-much-does-a-process-help-in-improving-quality-of-shipping-software/140965#140965 1 Answer by Corbin March for How much does a process help in improving quality of shipping software ? Corbin March 2008-09-26T17:55:29Z 2008-09-26T17:55:29Z <p>Things that have helped:</p> <ul> <li>Automated Unit Testing - catch bugs early</li> <li>Continuous Integration - catch bugs early, make my life easier</li> <li>A collection of test cases for human QA that's updated with each new feature and bug (to ward of regressions)</li> <li>Code Walkthroughs - helps everyone communicate and benefit from each other's experience</li> </ul> <p>Things that haven't helped:</p> <ul> <li>More meetings</li> <li>A ton of UML</li> <li>Research to determine which department was responsible for each bug (so the fix goes on their budget)</li> <li>More managers</li> </ul> <p>I work on business apps. I probably don't have the same opinion for the software that runs my pacemaker...</p> http://stackoverflow.com/questions/140846/how-much-does-a-process-help-in-improving-quality-of-shipping-software/140968#140968 0 Answer by ckramer for How much does a process help in improving quality of shipping software ? ckramer 2008-09-26T17:55:44Z 2008-09-26T17:55:44Z <p>I would say that the success of any specific technique will depend on your team, and whether or not they see value in what is being done. </p> <p>If you have a team that agrees that TDD is a Good Thing then collecting coverage metrics is probably not a bad idea. If you have specific goals for the sorts of refactorings that you want to do, then there may be some static analysis which would help (methods with more than X lines, cyclomatic complexity, etc).</p> <p>The one thing I can be entirely certain of is that if the team does not value the process it will not be effective in making the software better.</p> http://stackoverflow.com/questions/140846/how-much-does-a-process-help-in-improving-quality-of-shipping-software/142732#142732 1 Answer by Andrew Edgecombe for How much does a process help in improving quality of shipping software ? Andrew Edgecombe 2008-09-27T01:47:03Z 2008-09-27T01:47:03Z <p>Since you're talking about trying to improve your processes one of the things that you need to do is to measure your processes to give you a way of determining if the changes that you're making really are improvements.</p> <p>This is one of the tenets of any form of quality system (be it formal, like ISO9000, or an informal "we want to make this better") is to use ongoing measurement and analysis to feedback into your processes as continual improvement.</p> <p>The good news is that it shouldn't be difficult to implement a system of metrics collection that can help.</p> <p>The bad news is that it's going to take a while. And it's best if you get management buy-in.</p> <p>Things to look at:</p> <ul> <li><p>Code complexity. Try to monitor the complexity of your code and determine the rate of bugs that you are seeing per code complexity. There are lots of tools around that will let you record complexity. eg. <a href="http://www.campwoodsw.com/sourcemonitor.html" rel="nofollow">sourcemonitor</a></p></li> <li><p>Record code that you have subjected to code review. If you record this in the code itself you'll be able to determine the bug rate in reviewed code and compare that to unreviewed code. You want to be able to determine just how effective your reviews are.</p></li> <li><p>Record the types of bugs and the procedural sources of those bugs. (eg. bugs caused by inadequate requirements, plain coding errors, algorithmic errors, etc.) This will allow you to do two things. The first is to work out the areas that need the most attention (which could be all the way back at the management level). Secondly it will give you some data to back up your findings, to improve management buy-in to any changes.</p></li> <li><p>Record bugs that have been missed by your various testing procedures (both QA and unit testing). This should give an indication of whether the problems are with tests that are inadequate, wrong or just plain missing.</p></li> </ul>