Can anyone share their experience in adopting the MISRA C specification in their software development process?
|
feedback
|
|
My work projects adhere to MISRA-C 2004. I and my colleagues find it useful in preventing common coding errors - or should that be checking-in these errors!, since it is really something for a programmer to beware of and know some of the core 'teachings' but let a static analysis checker like QAC do the robust work. I would suggest you don't work with anything older than the 2004 standard since this is the first version in IMO relaxed enough to reflect real world C usage while still adding value. Also don't go overboard, allow deviations from the standard where they make sense for the project and ensure you record the justification for any deviation so the customer is happy to sign-off on the product and reasoning isn't lost when the team changes. | |||
|
feedback
|
|
While my projects are not decreed or required to comply with MISRA C++, I try to make sure that my code is mostly compliant. There are only a few items in MISRA C++ that I disagree mildly with, and more than a few items that I didn't even know about! So in my mind MISRA is a good thing to at least be aware of. | |||||||||||
feedback
|
|
In automotive C development (quite some work is still done in C these days), MISRA is almost everywhere. Many people use QA-C, some use PC Lint, and many developers therefore hardly realize the requirement is to be MISRA-compliant. QA-C is quite costly for private use (businesses may see this differently), PC Lint is affordable even for a freelance single programmer (like me), and some development environments and/or compilers have various levels of MISRA-warnings integrated. As for C99: Most automotive development is still required to be in C89/C94, and MISRA is now (December 2011) on the brink of publishing the next version for C, now with C99 support. From the MISRA website: "Work towards MISRA C3, expected to be published late 2011, is currently ongoing. As well as introducing additional rules to further enhance rule coverage of C language issues, MISRA C3 will also provide support for C99 language issues." | |||
|
feedback
|
|
You might find the answers to my question about misra useful. In general if you are starting from the beginning it's a good standard to follow, you can modify it a bit to adapt to your specific needs, but it's a good start. Porting existing code is a bit time consuming and not always worth an effort. | ||||
|
feedback
|
|
I assume that you mean Misra-C:2004? I think that it is not that bad, even thou some part are a little strange. One thing that I like is that the in section 4.2.5 Test coverage, they tell you to use something they call DFT (Design For Test). DFT feels like a softer version off TTD (Test Driven Development), and most people should not have a problem with this one. Update: A link to Misra C: http://www.misra-c.com/ (since jdkoftinoff had a link to the Misra C++) Update: Another thing that can be disturbing is that they claim not to support C99. From their website:
Update: If we look at the attention this question got here, and compare it with similar questions I would guess that not that many people use Misra... (but this is just a feeling) And not that many have used the misra tag: http://stackoverflow.com/questions/tagged/misra But there is quite some answer that for some reason mention the word misra, so it is not totally unknown here ;-) | |||||
feedback
|