mirror of
				https://github.com/catchorg/Catch2.git
				synced 2025-10-31 20:27:11 +01:00 
			
		
		
		
	Revert "Do not resolve symbolic path when sanitizing filepath during approvals"
This reverts commit 52f3abadbb.
Opens #1691
			
			
This commit is contained in:
		| @@ -10,13 +10,13 @@ import re | ||||
| import difflib | ||||
|  | ||||
| import scriptCommon | ||||
| from scriptCommon import catchPathSymbolic | ||||
| from scriptCommon import catchPath | ||||
|  | ||||
| if os.name == 'nt': | ||||
|     # Enable console colours on windows | ||||
|     os.system('') | ||||
|  | ||||
| rootPath = os.path.join(catchPathSymbolic, 'projects/SelfTest/Baselines') | ||||
| rootPath = os.path.join(catchPath, 'projects/SelfTest/Baselines') | ||||
|  | ||||
| langFilenameParser = re.compile(r'(.+\.[ch]pp)') | ||||
| filelocParser = re.compile(r''' | ||||
| @@ -92,9 +92,9 @@ def diffFiles(fileA, fileB): | ||||
|  | ||||
|  | ||||
| def normalizeFilepath(line): | ||||
|     if catchPathSymbolic in line: | ||||
|     if catchPath in line: | ||||
|         # make paths relative to Catch root | ||||
|         line = line.replace(catchPathSymbolic + os.sep, '') | ||||
|         line = line.replace(catchPath + os.sep, '') | ||||
|  | ||||
|     m = langFilenameParser.match(line) | ||||
|     if m: | ||||
|   | ||||
| @@ -4,7 +4,6 @@ import subprocess | ||||
|  | ||||
|  | ||||
| catchPath = os.path.dirname(os.path.realpath( os.path.dirname(sys.argv[0]))) | ||||
| catchPathSymbolic = os.path.dirname(os.path.dirname(sys.argv[0])) | ||||
|  | ||||
| def getBuildExecutable(): | ||||
|     if os.name == 'nt': | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Martin Hořeňovský
					Martin Hořeňovský