mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-22 13:26:10 +01:00
Normalize TAP approvals to avoid massive diffs for every change
This commit is contained in:
parent
c3a5e21648
commit
34bc56340d
File diff suppressed because it is too large
Load Diff
@ -70,6 +70,8 @@ nanParser = re.compile(r'''
|
|||||||
__builtin_nanf\("0x<hex\ digits>"\) # The weird content of the brackets is there because a different parser has already ran before this one
|
__builtin_nanf\("0x<hex\ digits>"\) # The weird content of the brackets is there because a different parser has already ran before this one
|
||||||
''', re.VERBOSE)
|
''', re.VERBOSE)
|
||||||
|
|
||||||
|
# The weird OR is there to always have at least empty string for group 1
|
||||||
|
tapTestNumParser = re.compile(r'^(not |)?ok (\d+) -')
|
||||||
|
|
||||||
if len(sys.argv) == 2:
|
if len(sys.argv) == 2:
|
||||||
cmdPath = sys.argv[1]
|
cmdPath = sys.argv[1]
|
||||||
@ -125,6 +127,9 @@ def filterLine(line, isCompact):
|
|||||||
line = line.replace(': FAILED', ': failed')
|
line = line.replace(': FAILED', ': failed')
|
||||||
line = line.replace(': PASSED', ': passed')
|
line = line.replace(': PASSED', ': passed')
|
||||||
|
|
||||||
|
# strip out the test order number in TAP to avoid massive diffs for every change
|
||||||
|
line = tapTestNumParser.sub("\g<1>ok {test-number} -", line)
|
||||||
|
|
||||||
# strip Catch version number
|
# strip Catch version number
|
||||||
line = versionParser.sub("<version>", line)
|
line = versionParser.sub("<version>", line)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user