mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-04 05:09:53 +01:00
b80280f428
- also removed basic reporter from approval test
61 lines
2.1 KiB
Python
61 lines
2.1 KiB
Python
import os
|
|
import sys
|
|
import subprocess
|
|
import re
|
|
|
|
from scriptCommon import catchPath
|
|
|
|
filenameParser = re.compile( r'\s*.*/(.*\..pp):([0-9]*)(.*)' )
|
|
lineNumberParser = re.compile( r'(.*)line="[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])))
|
|
|
|
baselinesPath = os.path.join( catchPath, 'projects/SelfTest/Baselines/approvedResults.txt' )
|
|
rawResultsPath = os.path.join( catchPath, 'projects/SelfTest/Baselines/_rawResults.tmp' )
|
|
filteredResultsPath = os.path.join( catchPath, 'projects/SelfTest/Baselines/unapprovedResults.txt' )
|
|
|
|
if len(sys.argv) == 2:
|
|
cmdPath = sys.argv[1]
|
|
else:
|
|
cmdPath = os.path.join( catchPath, 'projects/XCode4/CatchSelfTest/DerivedData/CatchSelfTest/Build/Products/Debug/CatchSelfTest' )
|
|
|
|
f = open( rawResultsPath, 'w' )
|
|
subprocess.call([ cmdPath, "~dummy", "-r", "console" ], stdout=f, stderr=f )
|
|
subprocess.call([ cmdPath, "~dummy", "-s", "-w", "NoAssertions", "-r", "console" ], stdout=f, stderr=f )
|
|
subprocess.call([ cmdPath, "~dummy", "-s", "-w", "NoAssertions", "-r", "console", "-a", "4" ], stdout=f, stderr=f )
|
|
subprocess.call([ cmdPath, "~dummy", "-s", "-w", "NoAssertions", "-r", "junit" ], stdout=f, stderr=f )
|
|
subprocess.call([ cmdPath, "~dummy", "-s", "-w", "NoAssertions", "-r", "xml" ], stdout=f, stderr=f )
|
|
f.close()
|
|
|
|
rawFile = open( rawResultsPath, 'r' )
|
|
filteredFile = open( filteredResultsPath, 'w' )
|
|
for line in rawFile:
|
|
m = filenameParser.match( line )
|
|
if m:
|
|
line = m.group(1) + m.group(3)
|
|
else:
|
|
m = lineNumberParser.match( line )
|
|
if m:
|
|
line = m.group(1) + m.group(2)
|
|
|
|
while True:
|
|
m = hexParser.match( line )
|
|
if m:
|
|
line = m.group(1) + "0x<hex digits>" + m.group(3)
|
|
else:
|
|
break
|
|
filteredFile.write( line.rstrip() + "\n" )
|
|
filteredFile.close()
|
|
rawFile.close()
|
|
|
|
os.remove( rawResultsPath )
|
|
print
|
|
diffResult = subprocess.call([ "diff", baselinesPath, filteredResultsPath ] )
|
|
if diffResult == 0:
|
|
os.remove( filteredResultsPath )
|
|
print "\033[92mResults matched"
|
|
else:
|
|
print "\n****************************\n\033[91mResults differed"
|
|
print "\033[0m"
|
|
exit( diffResult) |