-
Notifications
You must be signed in to change notification settings - Fork 796
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add fuzzing harness #906
Add fuzzing harness #906
Conversation
aa03f63
to
7979b1f
Compare
I'm rather favorable to this effort, given the increased security coverage offered by oss-fuzz, note though that the current proposal (this PR) fails CI tests. |
Makefile
Outdated
@@ -315,6 +316,12 @@ test-xxhsum-c: xxhsum | |||
echo "00000000 test-expects-file-not-found" | ./xxhsum -c -; test $$? -eq 1 | |||
@$(RM) .test.* | |||
|
|||
LIB_FUZZING_ENGINE?="-fsanitize=fuzzer" | |||
ifeq '' '$(findstring clang++,$(CXX))' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this ifeq
correct ?
I thought it would require parenthesis
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Your probably right. Just fiddling with this to get it working.
7979b1f
to
2b0824e
Compare
Great! Working on getting everything green, it's been a while since I've been working with Makefiles so I'm a little rusty. |
2b0824e
to
530e662
Compare
No description provided.