1*4882a593SmuzhiyunFrom e2c2895d52761ddc6384a31364236dd13f677c34 Mon Sep 17 00:00:00 2001
2*4882a593SmuzhiyunFrom: Alexander Kanavin <alex@linutronix.de>
3*4882a593SmuzhiyunDate: Fri, 10 Sep 2021 10:44:42 +0200
4*4882a593SmuzhiyunSubject: [PATCH] tests/Makefile: do not use -Werror
5*4882a593Smuzhiyun
6*4882a593SmuzhiyunOtherwise, openssl 3 deprecation warnings become errors.
7*4882a593SmuzhiyunReported at https://github.com/cryptodev-linux/cryptodev-linux/issues/67
8*4882a593Smuzhiyun
9*4882a593SmuzhiyunUpstream-Status: Inappropriate [upstream needs to update the code]
10*4882a593SmuzhiyunSigned-off-by: Alexander Kanavin <alex@linutronix.de>
11*4882a593Smuzhiyun---
12*4882a593Smuzhiyun tests/Makefile | 2 +-
13*4882a593Smuzhiyun 1 file changed, 1 insertion(+), 1 deletion(-)
14*4882a593Smuzhiyun
15*4882a593Smuzhiyundiff --git a/tests/Makefile b/tests/Makefile
16*4882a593Smuzhiyunindex 2fb7a9a..e94f80e 100644
17*4882a593Smuzhiyun--- a/tests/Makefile
18*4882a593Smuzhiyun+++ b/tests/Makefile
19*4882a593Smuzhiyun@@ -1,4 +1,4 @@
20*4882a593Smuzhiyun-CFLAGS += -I.. $(CRYPTODEV_CFLAGS) -Wall -Werror
21*4882a593Smuzhiyun+CFLAGS += -I.. $(CRYPTODEV_CFLAGS) -Wall
22*4882a593Smuzhiyun
23*4882a593Smuzhiyun comp_progs := cipher_comp hash_comp hmac_comp
24*4882a593Smuzhiyun
25