diff options
author | Richard Levitte <levitte@openssl.org> | 2020-11-23 02:26:34 +0100 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2020-11-24 11:01:58 +0100 |
commit | c150a9485772bd4b1bdf144c9fa26043a8a24d65 (patch) | |
tree | 7eabadc1d76a251856b81cfdf360c5112816ea39 /.gitattributes | |
parent | Move some libssl global variables into SSL_CTX (diff) | |
download | openssl-c150a9485772bd4b1bdf144c9fa26043a8a24d65.tar.xz openssl-c150a9485772bd4b1bdf144c9fa26043a8a24d65.zip |
TEST: Make our test data binary
Our test data (test/data.txt and test/data2.txt) are text files, but
declaring them binary means that there will be no line ending
transformation done on them. This is necessary for testing on
non-Unix platforms, where certain tests could otherwise give results
that don't match expected results.
Fixes #13474
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/13477)
Diffstat (limited to '.gitattributes')
-rw-r--r-- | .gitattributes | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.gitattributes b/.gitattributes index 3fbaf1160f..6771355ff7 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,3 +1,4 @@ +*.bin binary *.der binary /fuzz/corpora/** binary *.pfx binary |