We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 83b17ce + a819808 commit bb35460Copy full SHA for bb35460
1 file changed
testing/runtests.py
@@ -346,6 +346,7 @@ def perform_test(self,testmgr):
346
data = xpopen('%s --format --noblanks --nowarning %s' % (self.args.xmllint,check_file))
347
if data:
348
# strip version
349
+ data = re.sub(r'<tagfile doxygen_version="[^"]+">','<tagfile doxygen_version="" doxygen_gitid="">',data)
350
data = re.sub(r'tagfile doxygen_version="[^"]+" doxygen_gitid="[^"]+"','tagfile doxygen_version="" doxygen_gitid=""',data)
351
data = re.sub(r'xsd" version="[0-9.-]+"','xsd" version=""',data).rstrip('\n')
352
else:
0 commit comments