aboutsummaryrefslogtreecommitdiff
path: root/trim-lcov.py
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2021-11-02 22:20:28 +0100
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2021-11-02 22:20:28 +0100
commit32e7730f835f59b927269233638c718f2800da1a (patch)
treecbf6e45410554731b7ec706ee1a3516e553f11f1 /trim-lcov.py
parent7d87d4cf8474a9f7f73c362b0e4be718b7e04707 (diff)
downloadayatana-indicator-session-32e7730f835f59b927269233638c718f2800da1a.tar.gz
ayatana-indicator-session-32e7730f835f59b927269233638c718f2800da1a.tar.bz2
ayatana-indicator-session-32e7730f835f59b927269233638c718f2800da1a.zip
Drop trim-lcov.py. Autotools related file.
Diffstat (limited to 'trim-lcov.py')
-rwxr-xr-xtrim-lcov.py57
1 files changed, 0 insertions, 57 deletions
diff --git a/trim-lcov.py b/trim-lcov.py
deleted file mode 100755
index 2cd8dee..0000000
--- a/trim-lcov.py
+++ /dev/null
@@ -1,57 +0,0 @@
-#!/usr/bin/env python3
-# -*- coding: utf-8 -*-
-
-# 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':
-
- with open(rest, 'r') as pFile:
-
- source = pFile.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)