-
Notifications
You must be signed in to change notification settings - Fork 595
Copy fuzzer script logs to correct buckets #5099
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
Conversation
javanlacerda
left a comment
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.
LGTM, just some nits. Thanks for fixing it.
|
Any idea if this fixes the issue how logs points to the wrong directory here: https://clusterfuzz.com/fuzzer-stats?group_by=by-fuzzer&date_start=2025-12-26&date_end=2026-01-01&fuzzer=libFuzzer&job=libfuzzer_chrome_asan (it's getting uploaded with name None) |
Not sure if I understand what is wrong there, AFAICT they are pointing to the correct dir (for instance, clicking on libFuzzer_ac3_util_fuzzer_Ac3UtilTest_ParseTotalEac3SampleCountNeverCrashes_fuzzer leads to what seems the correct logs dir). One thing I noticed by your question is that the method to retrieve the logs bucket name depends on the |
Weird, it's right in the link I sent you but not this one (because it's from oss-fuzz) https://oss-fuzz.com/fuzzer-stats?project=abseil-cpp&fuzzer=afl&job=afl_asan_abseil-cpp&group_by=by-fuzzer |
Ah I see, it seems an issue only in oss-fuzz. I can take a look, but this is not exactly related to this PR. |
|
No worries! |
Handler for
store_fuzzer_run_resultsin postprocess (#3406) was not adding the fuzzer script logs to the correct structured buckets, as expected by the fuzzer page on the UI. This PR tries to fix it by copying the data from the blob store to the expected buckets during postprocess.b/361867455