blob: 2731676303acc39857bcf65bb943699978e56545 (
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
44
45
46
47
|
# $OpenBSD: Makefile,v 1.5 2022/07/18 09:15:08 tb Exp $
.if !exists(/usr/local/share/tlsfuzzer)
regress:
@echo package py3-tlsfuzzer is required for this regress
@echo SKIPPED
.else
REGRESS_TARGETS=regress-tlsfuzzer
localhost.key localhost.crt:
openssl req -x509 -newkey rsa -keyout localhost.key -out localhost.crt \
-subj /CN=localhost -nodes -batch
certs: localhost.key localhost.crt
CLEANFILES += localhost.key localhost.crt
PORT ?= 4433
SLOW = -s
TIMING = -t
VERBOSE = # -v
regress-tlsfuzzer: certs
python3 ${.CURDIR}/tlsfuzzer.py ${SLOW} ${TIMING} ${VERBOSE}
failing: certs
python3 ${.CURDIR}/tlsfuzzer.py -f ${SLOW} ${TIMING} ${VERBOSE}
port: certs
python3 ${.CURDIR}/tlsfuzzer.py ${SLOW} ${TIMING} ${VERBOSE} -p ${PORT}
list:
@python3 ${.CURDIR}/tlsfuzzer.py -l
list-failing:
@python3 ${.CURDIR}/tlsfuzzer.py -l -f
missing:
@python3 ${.CURDIR}/tlsfuzzer.py -m
.PHONY: all certs failing list list-failing missing port
.endif
.include <bsd.regress.mk>
|