Skip to content

glsl/tests: Use splitlines() instead of strip()

Michel Dänzer requested to merge daenzer/mesa:glsl-tests-splitlines into master

strip() removes leading and trailing newlines, but leaves newlines between multiple lines in the string. This could cause failures when comparing the output of cross-compiled Windows binaries (producing Windows-style newlines) to the expected output with Unix-style newlines.

Merge request reports