Is possible to suppress unit test functions? I have address sanitizer in my project and I am getting reports with info about stack-buffer-overflow, which I want to supress.
It's already one stackoverflow page with similar problem here , but solution for this question is not what I want to have (I don't want to disable test).
For example
TEST_F(classA, testA) {
some_struct a;
a.p = 100;
ASSERT_FALSE(&foo());
}
I want to not use address sanitizer in this test. Test should be run but I don't want to have any address sanitizer report