summaryrefslogtreecommitdiff
path: root/src/regress/lib/libssl/interop/openssl/Makefile
blob: adc93e5ad53db9cf520bdab3fea6e7dcb4939407 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# $OpenBSD: Makefile,v 1.6 2018/11/11 00:15:04 bluhm Exp $

.if ! exists(/usr/local/bin/eopenssl)
regress:
	# install openssl-1.0.2 from ports for interop tests
	@echo SKIPPED
.endif

PROGS =			client server
CPPFLAGS =		-I /usr/local/include/eopenssl
LDFLAGS =		-L /usr/local/lib/eopenssl
LDADD =			-lssl -lcrypto
DPADD =			/usr/local/lib/eopenssl/libssl.a \
			/usr/local/lib/eopenssl/libcrypto.a
LD_LIBRARY_PATH =	/usr/local/lib/eopenssl
REGRESS_TARGETS =	run-self-client-server
.for p in ${PROGS}
REGRESS_TARGETS +=	run-ldd-$p run-version-$p run-protocol-$p
.endfor

.for p in ${PROGS}

run-ldd-$p: ldd-$p.out
	@echo '\n======== $@ ========'
	# check that $p is linked with OpenSSL
	grep -q /usr/local/lib/eopenssl/libcrypto.so ldd-$p.out
	grep -q /usr/local/lib/eopenssl/libssl.so ldd-$p.out
	# check that $p is not linked with LibreSSL
	! grep -v libc.so ldd-$p.out | grep /usr/lib/

run-version-$p: $p-self.out
	@echo '\n======== $@ ========'
	# check that runtime version is OpenSSL 1.0.2
	grep 'SSLEAY_VERSION: OpenSSL 1.0.2' $p-self.out

run-protocol-$p: $p-self.out
	@echo '\n======== $@ ========'
	# check that OpenSSL 1.0.2 protocol version is TLS 1.2
	grep 'Protocol *: TLSv1.2' $p-self.out

.endfor

.include <bsd.regress.mk>