Welcome to the new Parasoft forums! We hope you will enjoy the site and try out some of the new features, like sharing an idea you may have for one of our products or following a category.
Turning off suppressed messages
LegacyForum
Posts: 1,664 ✭✭
I want nothing suppressed
I have tried removing every reference to suppressed in all .psrc files but things are still suppressedPROBLEM SUMMARY - by type
===============
Problem Reported Suppressed
-------------------------------------------------
COPY_WILD 0 3
EXPR_WILD 0 2
FREE_NULL 0 4
RETURN_FAILURE 0 85
-------------------------------------------------
TOTAL 0 94
-------------------------------------------------
How do I see everything?
thanks
josh siegel
Tagged:
0
Comments
-
In your .psrc file you can add
insure++.unsuppress all
This would unsuppress every thing that is suppressed by default but you would still see some things suppressed because if an error occurs inside of a loop insure's default and generally desired behaviour is to only report that error once rather than each time it occurs in the same loop.0