summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemko Tronçon <git@el-tramo.be>2009-08-14 09:13:11 (GMT)
committerRemko Tronçon <git@el-tramo.be>2009-08-16 22:13:28 (GMT)
commitd3dad1ccfe1741a5a5f2c610d995b5c8cc603844 (patch)
treeee78712720803addda4a7c3f2e1bc50b402c8257 /tools/coverage/FilterLCovData.py
parent8e53a2df443901f786932942759e5fe7b632852e (diff)
downloadswift-d3dad1ccfe1741a5a5f2c610d995b5c8cc603844.zip
swift-d3dad1ccfe1741a5a5f2c610d995b5c8cc603844.tar.bz2
Move coverage tools to BuildTools dir.
Diffstat (limited to 'tools/coverage/FilterLCovData.py')
-rwxr-xr-xtools/coverage/FilterLCovData.py32
1 files changed, 0 insertions, 32 deletions
diff --git a/tools/coverage/FilterLCovData.py b/tools/coverage/FilterLCovData.py
deleted file mode 100755
index 8d56a7f..0000000
--- a/tools/coverage/FilterLCovData.py
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/usr/bin/env python
-
-# TODO: Add uncovered non-ignored files
-
-import sys, re, os.path
-
-assert(len(sys.argv) == 2)
-
-def isIgnored(file) :
- return (find.find("/Swiften/") == -1 and find.find("/Slimber/") == -1 and find.find("/Swift/") == -1) or (find.find("/UnitTest/") != -1 or find.find("/QA/") != -1)
-
-
-output = []
-inputFile = open(sys.argv[1])
-inIgnoredFile = False
-for line in inputFile.readlines() :
- if inIgnoredFile :
- if line == "end_of_record\n" :
- inIgnoredFile = False
- else :
- if line.startswith("SF:") and isIgnored(line) :
- inIgnoredFile = True
- else :
- m = re.match("SF:(.*)", line)
- if m :
- line = "SF:" + os.path.realpath(m.group(1)) + "\n"
- output.append(line)
-inputFile.close()
-
-outputFile = open(sys.argv[1], 'w')
-outputFile.write(''.join(output))
-outputFile.close()