From 225ed9172ea8e84c30ba9afcf6cca257bfb492fe Mon Sep 17 00:00:00 2001 From: Nathan Moinvaziri Date: Tue, 2 Jan 2024 15:38:02 -0800 Subject: [PATCH] Force dump_syms output to be checked out with LF line-ending. Otherwise, even with core.autocrlf=false, Windows will checkout these minidump output files with CRLF line-ending. It is necessary for these files to be checked out using LF line-ending for the unit tests to pass. Change-Id: I7cacf4b5fa56e007c8aa81202e0cef7ad42ae93a Reviewed-on: https://chromium-review.googlesource.com/c/breakpad/breakpad/+/5160534 Reviewed-by: Ivan Penkov --- .gitattributes | 1 + 1 file changed, 1 insertion(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 00000000..1f549372 --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +src/processor/testdata/*.out text eol=lf