How to test reliability of my own (small) embedded operating system ?

Posted by TridenT on Stack Overflow See other posts from Stack Overflow or by TridenT
Published on 2010-05-23T06:35:16Z Indexed on 2010/05/23 6:40 UTC
Read the original article Hit count: 232

I've written a small operating system for embedded project running on small to medium target.

I added some automated unit test with a high test code coverage (>95%), but the scope is only the static part.
I got some code metrics as complexity and readability.
I'm testing my code with a rule checker with MiSRA support, and of course fixed all warnings.
I'm testing the code with a static analyzer and again fixed all warnings.

What can I do now to test - and improve - the reliability of my OS ? How about the dynamic part ?

© Stack Overflow or respective owner

Related posts about c

    Related posts about unit-testing