-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
all: do comparison substitution for extra coverage #4844
base: master
Are you sure you want to change the base?
Conversation
348f228
to
d979a81
Compare
Collect comparison arguments for extra coverage. For that, we now need to start remote coverage collection for every forked program. Substitute the arguments into all calls that have remote_cover set.
d979a81
to
1dcae20
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files
|
Hmm, the backward incompatibility is worse than I thought. Since we may lose a But we're also unable to reuse the same
And we cannot obtain a new UPD: We might have to return to keeping a single remote kcov instance per a |
Can we create the remote kcov on a thread that never executes? I.e. not the main thread, but rather an additional special thread that exists just for that purpose? |
Interesting! |
KCOV_REMOTE_ENABLE is done once per top level process, so it should reduce probability several orders of magnitude. |
Collect comparison arguments for extra coverage.
For that, we now need to start remote coverage collection for every forked program.
Substitute the arguments into all calls that have remote_cover set.
Do we need any special handling for the
SYZ_EXECUTOR_USES_FORK_SERVER == 0
case?