diff options
Diffstat (limited to 'common/test.c')
-rw-r--r-- | common/test.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/common/test.c b/common/test.c index b6ad012..c72cb7d 100644 --- a/common/test.c +++ b/common/test.c @@ -122,6 +122,11 @@ p11_test_fail (const char *filename, free (output); + /* Let coverity know we're not supposed to return from here */ +#ifdef __COVERITY__ + abort(); +#endif + longjmp (gl.jump, 1); } |