Skip to content
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

Support the Jacoco filter merge operation in Java branch coverage. #13972

Closed
wants to merge 1 commit into from

Conversation

c-mita
Copy link
Member

@c-mita c-mita commented Sep 10, 2021

Instructions that are indicated to be merged must have their corresponding
coverage expressions (CovExp) combined in a pairwise fashion.

e.g. A pair of branch expressions that should be merged:
BranchExp(a, b), BranchExp(c, d)

Becomes:

BranchExp(a | c, b | d)

This is distinct from the previous merge operation on BranchExp which
simply joined the branches of the two objects (this has been renamed to
concatenate).

Part of #12696.

Instructions that are indicated to be merged must have their corresponding
coverage expressions (`CovExp`) combined in a pairwise fashion.

e.g. A pair of branch expressions that should be merged:
`BranchExp(a, b)`, `BranchExp(c, d)`

Becomes:

`BranchExp(a | c, b | d)`

This is distinct from the previous merge operation on BranchExp which
simply joined the branches of the two objects (this has been renamed to
concatenate).
@c-mita c-mita requested a review from comius September 10, 2021 14:24
@google-cla google-cla bot added the cla: yes label Sep 10, 2021
@bazel-io bazel-io closed this in 908a765 Sep 14, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant