Removed line numbers from approval tests

This commit is contained in:
Phil Nash 2013-06-29 11:59:49 +01:00
parent c22cfc4a95
commit 40b8c7794c
2 changed files with 2440 additions and 2440 deletions

File diff suppressed because it is too large Load Diff

View File

@ -5,7 +5,7 @@ import re
from scriptCommon import catchPath
filenameParser = re.compile( r'\s*.*/(.*\..pp)(.*)' )
filenameParser = re.compile( r'\s*.*/(.*\..pp):([0-9]*)(.*)' )
hexParser = re.compile( r'(.*)\b(0[xX][0-9a-fA-F]+)\b(.*)' )
#catchPath = os.path.dirname(os.path.realpath( os.path.dirname(sys.argv[0])))
@ -34,7 +34,7 @@ filteredFile = open( filteredResultsPath, 'w' )
for line in rawFile:
m = filenameParser.match( line )
if m:
line = m.group(1) + m.group(2)
line = m.group(1) + m.group(3)
while True:
m = hexParser.match( line )