From 7fa697418919d4b500b94602623834e24256ecb6 Mon Sep 17 00:00:00 2001 From: anton Date: Mon, 10 Jul 2023 17:46:03 +0000 Subject: [PATCH] Infer the timeout from the environment, with sane defaults. Should hopefully make these tests more stable on my slow^W regress machines. ok sashan@ --- regress/sys/net/pf_trans/Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/regress/sys/net/pf_trans/Makefile b/regress/sys/net/pf_trans/Makefile index 9bcbc02142b..bc38214a660 100644 --- a/regress/sys/net/pf_trans/Makefile +++ b/regress/sys/net/pf_trans/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.1 2023/07/06 19:55:57 sashan Exp $ +# $OpenBSD: Makefile,v 1.2 2023/07/10 17:46:03 anton Exp $ PROGS+= dev-limit PROGS+= iocmd-limit @@ -8,6 +8,7 @@ CFLAGS+= -Wall REGRESS_ROOT_TARGETS= run-regress-dev-limit \ run-regress-iocmd-limit +TIMEOUT?= 10 # # Create 2048 processes. Each child process will attempt @@ -16,7 +17,7 @@ REGRESS_ROOT_TARGETS= run-regress-dev-limit \ # There should be 1023 children, which could open /dev/pf. # run-regress-dev-limit: - ${SUDO} ./dev-limit -c 2048 -s 1023 -t 10 + ${SUDO} ./dev-limit -c 2048 -s 1023 -t ${TIMEOUT} # # Open 1024 tickets for DIOCGETRULES without closing them. -- 2.20.1