mirror of
				https://github.com/catchorg/Catch2.git
				synced 2025-10-31 20:27:11 +01:00 
			
		
		
		
	Brute force casing
This commit is contained in:
		| @@ -92,9 +92,10 @@ def diffFiles(fileA, fileB): | ||||
|  | ||||
|  | ||||
| def normalizeFilepath(line): | ||||
|     if catchPathSymbolic in line: | ||||
|     if catchPathSymbolic in line or catchPathSymbolic.lower() in line: | ||||
|         # make paths relative to Catch root | ||||
|         line = line.replace(catchPathSymbolic + os.sep, '') | ||||
|         line = line.replace(catchPathSymbolic.lower() + os.sep, '') | ||||
|  | ||||
|     m = langFilenameParser.match(line) | ||||
|     if m: | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Martin Hořeňovský
					Martin Hořeňovský