triage-report.py: use classifications 'true positive', 'false positive', 'false negative' instead
This commit is contained in:
parent
af8961d56b
commit
2b018db25a
|
@ -24,12 +24,13 @@ fin.close()
|
||||||
|
|
||||||
out = {}
|
out = {}
|
||||||
out['untriaged'] = ''
|
out['untriaged'] = ''
|
||||||
|
out['fn'] = ''
|
||||||
out['fp'] = ''
|
out['fp'] = ''
|
||||||
out['tp'] = ''
|
out['tp'] = ''
|
||||||
out['notfound'] = ''
|
|
||||||
|
|
||||||
numberOfFalsePositives = 0
|
numberOfFalsePositives = 0
|
||||||
numberOfTruePositives = 0
|
numberOfTruePositives = 0
|
||||||
|
numberOfFalseNegatives = 0
|
||||||
|
|
||||||
for result in results.split('\n'):
|
for result in results.split('\n'):
|
||||||
result = result.strip()
|
result = result.strip()
|
||||||
|
@ -45,11 +46,11 @@ for result in results.split('\n'):
|
||||||
classification = 'Untriaged'
|
classification = 'Untriaged'
|
||||||
if result in truepositives:
|
if result in truepositives:
|
||||||
css = 'tp'
|
css = 'tp'
|
||||||
classification = 'Bug'
|
classification = 'True Positive'
|
||||||
numberOfTruePositives += 1
|
numberOfTruePositives += 1
|
||||||
elif result in falsepositives:
|
elif result in falsepositives:
|
||||||
css = 'fp'
|
css = 'fp'
|
||||||
classification = 'Not bug'
|
classification = 'False Positive'
|
||||||
numberOfFalsePositives += 1
|
numberOfFalsePositives += 1
|
||||||
href = None
|
href = None
|
||||||
|
|
||||||
|
@ -80,11 +81,13 @@ for line in f.readlines():
|
||||||
if line in results:
|
if line in results:
|
||||||
continue
|
continue
|
||||||
|
|
||||||
|
numberOfFalseNegatives += 1
|
||||||
|
|
||||||
filename = res.group(1)
|
filename = res.group(1)
|
||||||
linenr = res.group(2)
|
linenr = res.group(2)
|
||||||
message = res.group(3)
|
message = res.group(3)
|
||||||
classification = 'Not Found'
|
classification = 'False Negative'
|
||||||
css = 'notfound'
|
css = 'fn'
|
||||||
|
|
||||||
html = ' <tr>'
|
html = ' <tr>'
|
||||||
html += '<td class='+css+'>'+filename+'</td>'
|
html += '<td class='+css+'>'+filename+'</td>'
|
||||||
|
@ -106,14 +109,15 @@ else:
|
||||||
fout = open('report.html','wt')
|
fout = open('report.html','wt')
|
||||||
fout.write('<html><head><title>Cppcheck results for ' + project + '</title><link rel="stylesheet" type="text/css" href="theme1.css"></head><body>\n')
|
fout.write('<html><head><title>Cppcheck results for ' + project + '</title><link rel="stylesheet" type="text/css" href="theme1.css"></head><body>\n')
|
||||||
fout.write('<h1>Cppcheck results for ' + project + '</h1>\n')
|
fout.write('<h1>Cppcheck results for ' + project + '</h1>\n')
|
||||||
|
fout.write('<p>Number of false negatives: ' + str(numberOfFalseNegatives) + '</p>\n')
|
||||||
fout.write('<p>Number of true positives: ' + str(numberOfTruePositives) + '</p>\n')
|
fout.write('<p>Number of true positives: ' + str(numberOfTruePositives) + '</p>\n')
|
||||||
fout.write('<p>Number of false positives: ' + str(numberOfFalsePositives) + '</p>\n')
|
fout.write('<p>Number of false positives: ' + str(numberOfFalsePositives) + '</p>\n')
|
||||||
fout.write('<table border="0">\n')
|
fout.write('<table border="0">\n')
|
||||||
fout.write('<tr><th>Filename</th><th>Line</th><th>Message</th><th>Classification</th></tr>\n')
|
fout.write('<tr><th>Filename</th><th>Line</th><th>Message</th><th>Classification</th></tr>\n')
|
||||||
|
fout.write(out['fn'])
|
||||||
fout.write(out['tp'])
|
fout.write(out['tp'])
|
||||||
fout.write(out['notfound'])
|
|
||||||
fout.write(out['untriaged'])
|
|
||||||
fout.write(out['fp'])
|
fout.write(out['fp'])
|
||||||
|
fout.write(out['untriaged'])
|
||||||
|
|
||||||
fout.write('</table></body></html>')
|
fout.write('</table></body></html>')
|
||||||
fout.close()
|
fout.close()
|
||||||
|
|
Loading…
Reference in New Issue