From 2528405caceca478b7f7309b803507d8b27037dc Mon Sep 17 00:00:00 2001 From: Donovan Baarda Date: Mon, 9 Aug 2021 23:07:26 +1000 Subject: Add .gitattributes to ensure test data is binary. This is important to ensure that git doesn't apply "\n" -> "\r\n" text conversions on checkout for Windows platforms. Changing the data files like this breaks the tests that use them. --- .gitattributes | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .gitattributes (limited to '.gitattributes') diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..82f5712 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,6 @@ +# Data files used for tests. +*.data binary +*.in binary +*.sig binary +*.delta binary +*.expect binary -- cgit v1.2.1