Skip to content

Commit

Permalink
JVM: Fix missing coverage for constructors (#596)
Browse files Browse the repository at this point in the history
This PR fixes a bug in JVM coverage caluclation which skip the coverage
calculations for constructors.

Signed-off-by: Arthur Chan <[email protected]>
  • Loading branch information
arthurscchan authored Sep 10, 2024
1 parent 0a8edf1 commit 43eb914
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions experiment/textcov.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,7 @@
}

JVM_SKIPPED_METHOD = [
'<init>', '<cinit>', 'fuzzerTestOneInput', 'fuzzerInitialize',
'fuzzerTearDown'
'fuzzerTestOneInput', 'fuzzerInitialize', 'fuzzerTearDown'
]


Expand Down

0 comments on commit 43eb914

Please sign in to comment.