Can anyone share their experience in adopting the MISRA C specification in their software development process?

link|improve this question
feedback

5 Answers

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.

link|improve this answer
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.

link|improve this answer
Do you know of any open-source tools to check MISRA C/C++ compliance? Some Eclipse plugin similar to the Java tool Checkstyle would be best. – starblue Mar 15 '09 at 7:09
No, I don't... I'd love to hear about any if anyone else knows! – jdkoftinoff Mar 15 '09 at 17:16
PC-lint by Gimpel Software has supported static checking for MISRA compliance since 2001. To activate it, use the au-misra2.lnt author (i.e., configuration) file they provide. – bitFlipper Jan 8 '10 at 23:52
I'm really curious to know the rules from MISRA C++ that you disagreed mildly with? – Richard Corden Feb 9 at 6:50
One rule I disagree with is rule 14-7-1: "All class templates, function templates, class template member functions and class template static members shall be instantiated at least once." - This puts a kink into the usage of generic programming patterns like SFINAE. It would be impossible to write a library like the STL without violating this rule, hence there is an exception clause 3.5. I'd be interested in seeing if MISRA C++ gets a major facelift now that C++11 implementations are becoming available! – jdkoftinoff Mar 5 at 6:37
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."

link|improve this answer
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.

link|improve this answer
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:

Is C99 covered?

MISRA-C:2004 is based on the C language as defined by ISO 9899:1990 (plus corrigenda). C99 has not been considered in MISRA-C:2004 due to the limited support for C99 on embedded microprocessors. MISRA C3 will consider support for C99 language constructs.


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 ;-)

http://stackoverflow.com/search?q=misra

link|improve this answer
Design for test would be the idea that you should be able to prove the correctness of code you write using tests, and therefore have to be able to run the code through all scenarios and see the effects. Test driven development is the idea that you should have a test to prove what you've written does what you intend before you even write it. The second does rather imply the first to be true, but if you're doing TDD without requiring 100% coverage there's no requirement for your code to be DFT. – ijw Nov 3 '09 at 17:26
True____________ – Johan Nov 4 '09 at 5:38
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.