-
Notifications
You must be signed in to change notification settings - Fork 2.3k
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
Debug coverage #8269
base: master
Are you sure you want to change the base?
Debug coverage #8269
Conversation
gcbrun trial_build.py skcms log4j2 --sanitizer address memory undefined coverage --fuzzing-engine libfuzzer afl honggfuzz |
/gcbrun trial_build.py skcms log4j2 --sanitizer address memory undefined coverage --fuzzing-engine libfuzzer afl honggfuzz |
/gcbrun trial_build.py jackson-core --sanitizer address memory undefined coverage --fuzzing-engine libfuzzer afl honggfuzz |
/gcbrun trial_build.py jackson-core --sanitizer address memory undefined coverage --fuzzing-engine libfuzzer afl honggfuzz --force-build |
/gcbrun trial_build.py skcms log4j2 --sanitizer address memory undefined coverage --fuzzing-engine libfuzzer afl honggfuzz |
/gcbrun trial_build.py jackson-core --sanitizer address memory undefined coverage --fuzzing-engine libfuzzer afl honggfuzz --force-build |
/gcbrun trial_build.py jackson-core --sanitizer address memory undefined coverage --fuzzing-engine libfuzzer afl honggfuzz --force-build |
/gcbrun trial_build.py jackson-core --sanitizer address memory undefined coverage --fuzzing-engine libfuzzer afl honggfuzz --force-build |
Worth landing this as it will make debugging easier |
@@ -188,6 +188,21 @@ def get_build_steps( # pylint: disable=too-many-locals, too-many-arguments | |||
], | |||
}) | |||
|
|||
# Upload the fuzzer logs. Delete the old ones just in case | |||
upload_fuzzer_logs_url = bucket.get_upload_url('logs') | |||
build_steps.append(build_lib.gsutil_rm_rf_step(upload_fuzzer_logs_url)) |
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.
this shouldn't error out if they don't already exist right?
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.
Yeah but it wouldn't have in the case I was trying to debug.
No description provided.