mirror of
				https://github.com/catchorg/Catch2.git
				synced 2025-10-31 20:27:11 +01:00 
			
		
		
		
	Fix CTest command issue with square brackets
This commit is contained in:
		| @@ -51,8 +51,11 @@ string(REPLACE "\n" ";" output "${output}") | ||||
| # Parse output | ||||
| foreach(line ${output}) | ||||
|   set(test ${line}) | ||||
|   # use escape commas to handle properly test cases with commans inside the name | ||||
|   string(REPLACE "," "\\," test_name ${test}) | ||||
|   # Escape characters in test case names that would be parsed by Catch2 | ||||
|   set(test_name ${test}) | ||||
|   foreach(char , [ ]) | ||||
|     string(REPLACE ${char} "\\${char}" test_name ${test_name}) | ||||
|   endforeach(char) | ||||
|   # ...and add to script | ||||
|   add_command(add_test | ||||
|     "${prefix}${test}${suffix}" | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Steven Franzen
					Steven Franzen