Skip to content

Commit c194de0

Browse files
committed
Change pg_regress.c back to using diff -w on Windows
This partially reverts commit 628c1d1. It appears that there are non line-end differences in some regression tests on Windows. To keep the buildfarm and CI clients happy, change this back for now, pending further investigation. Per reports from Tatsuo Ishii and Nazir Bilal Yavuz.
1 parent 9e4664d commit c194de0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/regress/pg_regress.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ static char *shellprog = SHELLPROG;
6565
const char *basic_diff_opts = "";
6666
const char *pretty_diff_opts = "-U3";
6767
#else
68-
const char *basic_diff_opts = "--strip-trailing-cr";
69-
const char *pretty_diff_opts = "--strip-trailing-cr -U3";
68+
const char *basic_diff_opts = "-w";
69+
const char *pretty_diff_opts = "-w -U3";
7070
#endif
7171

7272
/*

0 commit comments

Comments
 (0)