I have compiled my application with -fsanitize=undefined
option. How can I now test my application for undefined behavior?
Also, how do I run an Asan check? I've compiled my program with -fsanitize=address
, and it crashes with the following output:
==4563==Sanitizer CHECK failed: ../../../../src/libsanitizer/asan/asan_malloc_linux.cc:85 ((allocated < kCallocPoolSize)) != (0) (0, 0)
I've got GCC 4.9.2 on Ubuntu 15.04.
Unlike a static analysis check, this check will be done at run-time as explained in the following blog entry: GCC Undefined Behavior Sanitizer – ubsan. It will output a runtime error when it detects undefined behavior:
And we can see an example from there:
when ran using
-fsanitize=undefined
will output (see it live):GCC documents this option in their Options for Debugging Your Program or GCC section and it says:
As for the asan issue this address-sanitizer document gives you an example and the expected results. Perhaps your case it related to this gcc bug.