Skip to content

Commit

Permalink
Test pl4
Browse files Browse the repository at this point in the history
Signed-off-by: André Silva <andre15andre@hotmail.com>
  • Loading branch information
andre15silva committed Oct 24, 2021
1 parent 96aba61 commit 5258916
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,9 @@ private void runFlacoco(NopolContext nopolContext, Metric metric) {
LinkedHashMap<SourceLocation, List<fr.inria.lille.localization.TestResult>> map = new LinkedHashMap<>();
for (StatementSourceLocation source : statementSourceLocations) {
map.put(source.getLocation(), testListPerStatement.get(source.getLocation()));
if (source.getSuspiciousness() > 0.000000001) {
System.out.println(source.getLocation() + ":" + source.getSuspiciousness());
}
}
testListPerStatement = map;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -194,10 +194,8 @@ public void test_pl3() throws Exception {

@Test(timeout = TIMEOUT)
public void test_pl4() throws Exception {
// there is only a Kali patch for PL4
// and Nopol does not return Kali patches anymore
//if (testShouldBeRun())
// testTSEBug("pl4");
if (testShouldBeRun())
testTSEBug("pl4");
}

@Test(timeout = TIMEOUT)
Expand Down

0 comments on commit 5258916

Please sign in to comment.