You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
E.g., the percentage line coverage of a new fuzz target f1 should be the #lines it covered over the #lines it linked during compilation: $$\frac{Cov(f1)}{Linked(f1)}$$
The percentage line coverage improvement of f1 over an existing fuzz target f0 should be the #lines covered by f1 minus the #lines covered by f2, then divided by the union #lines linked by both. $$\frac{Cov(f1)-Cov(f0)}{Linked(f1 \cup f0)}$$
The text was updated successfully, but these errors were encountered:
E.g., the percentage line coverage of a new fuzz target
$$\frac{Cov(f1)}{Linked(f1)}$$
f1
should be the #lines it covered over the #lines it linked during compilation:The percentage line coverage improvement of
$$\frac{Cov(f1)-Cov(f0)}{Linked(f1 \cup f0)}$$
f1
over an existing fuzz targetf0
should be the #lines covered byf1
minus the #lines covered byf2
, then divided by the union #lines linked by both.The text was updated successfully, but these errors were encountered: