blob: d1f735a2b9b4a753fb11c036f434a0c80d21dae4 (
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
|
# $OpenBSD: Makefile,v 1.11 2020/04/24 10:34:54 claudio Exp $
BGPDTESTS=1 2 3 4 5 6 7 8 9 10 11 12 13
.for n in ${BGPDTESTS}
BGPD_TARGETS+=bgpd${n}
BGPD_UPDATES+=bgpd${n}-update
bgpd${n}:
bgpd -nv -f /dev/stdin < ${.CURDIR}/bgpd.conf.${n}.in | \
sed 's/router-id .*/router-id 127.0.0.1/' | \
diff -u ${.CURDIR}/bgpd.conf.${n}.ok /dev/stdin
bgpd${n}-update:
bgpd -nv -f /dev/stdin < ${.CURDIR}/bgpd.conf.${n}.in | \
sed 's/router-id .*/router-id 127.0.0.1/' > \
${.CURDIR}/bgpd.conf.${n}.ok
.endfor
REGRESS_TARGETS = bgpd-example bgpd-printconf ${BGPD_TARGETS}
bgpd-update: ${BGPD_UPDATES}
# check that the example configuration file we ship is ok
bgpd-example:
bgpd -nf ${.CURDIR}/../../../../etc/examples/bgpd.conf
# check that the output of bgpd -nvv is parseable
bgpd-printconf:
bgpd -nvf ${.CURDIR}/bgpd.conf.printconf | \
bgpd -nf /dev/stdin
.include <bsd.regress.mk>
|