aboutsummaryrefslogtreecommitdiff
path: root/trim-lcov.py
diff options
context:
space:
mode:
authorCharles Kerr <charles.kerr@canonical.com>2014-01-27 01:24:20 -0600
committerCharles Kerr <charles.kerr@canonical.com>2014-01-27 01:24:20 -0600
commitc1ffb9cd6082acb7aa7e820a7ed852adc7ae648d (patch)
tree9789615ca80de11f37e3e69e04ab833c56dd606d /trim-lcov.py
parent7b09a0ff5652bdca7c8d8e046d2af6a696f94147 (diff)
downloadayatana-indicator-datetime-c1ffb9cd6082acb7aa7e820a7ed852adc7ae648d.tar.gz
ayatana-indicator-datetime-c1ffb9cd6082acb7aa7e820a7ed852adc7ae648d.tar.bz2
ayatana-indicator-datetime-c1ffb9cd6082acb7aa7e820a7ed852adc7ae648d.zip
re-enable coverage-html reports
Diffstat (limited to 'trim-lcov.py')
-rwxr-xr-xtrim-lcov.py53
1 files changed, 53 insertions, 0 deletions
diff --git a/trim-lcov.py b/trim-lcov.py
new file mode 100755
index 0000000..78613d3
--- /dev/null
+++ b/trim-lcov.py
@@ -0,0 +1,53 @@
+#!/usr/bin/python
+
+# This script removes branch and/or line coverage data for lines that
+# contain a particular substring.
+#
+# In the interest of "fairness" it removes all branch or coverage data
+# when a match is found -- not just negative data. It is therefore
+# likely that running this script will actually reduce the total number
+# of lines and branches that are marked as covered (in absolute terms).
+#
+# This script intentionally avoids checking for errors. Any exceptions
+# will trigger make to fail.
+#
+# Author: Ryan Lortie <desrt@desrt.ca>
+
+import sys
+
+line_suppress = ['g_assert_not_reached']
+branch_suppress = ['g_assert', 'g_return_if_fail', 'g_clear_object', 'g_clear_pointer', 'g_return_val_if_fail', 'G_DEFINE_TYPE']
+
+def check_suppress(suppressions, source, data):
+ line, _, rest = data.partition(',')
+ line = int(line) - 1
+
+ assert line < len(source)
+
+ for suppression in suppressions:
+ if suppression in source[line]:
+ return True
+
+ return False
+
+source = []
+for line in sys.stdin:
+ line = line[:-1]
+
+ keyword, _, rest = line.partition(':')
+
+ # Source file
+ if keyword == 'SF':
+ source = file(rest).readlines()
+
+ # Branch coverage data
+ elif keyword == 'BRDA':
+ if check_suppress(branch_suppress, source, rest):
+ continue
+
+ # Line coverage data
+ elif keyword == 'DA':
+ if check_suppress(line_suppress, source, rest):
+ continue
+
+ print line