blob: 2b1cbe63e0b2871005ae6a0a9750eec5d55e0e07 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# $OpenBSD: Makefile,v 1.4 2020/12/17 00:51:12 bluhm Exp $
.include <bsd.regress.mk>
# The error tests try to splice unsuitable sockets and check the
# kernel error code.
.for a in ${ARGS}
run-$a: $a
.if empty (REMOTE_SSH)
time perl ${PERLINC} ${PERLPATH}error.pl ${PERLPATH}$a
.else
time perl ${PERLINC} ${PERLPATH}remote.pl ${REMOTE_SSH} ${PERLPATH}$a
.endif
.endfor
|