From ea18e4b2455a61730b1c2e2bb16026768c3c96de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Kr=C3=BCger?= Date: Wed, 12 Mar 2014 12:49:06 +0100 Subject: [PATCH] daca: count varid 0 occurences per file. --- tools/daca2-report.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tools/daca2-report.py b/tools/daca2-report.py index ffdab88d2..59f95f84d 100644 --- a/tools/daca2-report.py +++ b/tools/daca2-report.py @@ -58,7 +58,8 @@ mainpage.write( 'Performance' + 'Portability' + 'Style' + - 'Crashes\n') + 'Crashes' + + 'VarID 0\n') lastupdate = None recent = [] @@ -104,6 +105,7 @@ for lib in range(2): '' + str(data.count('(portability)')) + '' + '' + str(data.count('(style)')) + '' + '' + str(data.count('Crash?')) + '' + + '' + str(data.count('with varid 0.')) + '' + '\n') data = data.replace('&', '&')