Skip to content

Commit 8ed63a5

Browse files
committed
Canonicalize backslashes by default when analyzing outputs in the testsuite
1 parent 4f9d3fe commit 8ed63a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

testsuite/drivers/base_driver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@ def run_in_tty(self, args: list[str], **kwargs) -> tuple[str, int]:
353353
def output_refiners(self) -> list[OutputRefiner]:
354354
result = super().output_refiners
355355
result.append(Substitute(self.working_dir(), "<working-dir>"))
356-
if self.test_env.get("canonicalize_backslashes", False):
356+
if self.test_env.get("canonicalize_backslashes", True):
357357
result.append(Substitute("\\", "/"))
358358
return result
359359

0 commit comments

Comments
 (0)