summaryrefslogtreecommitdiff
path: root/regress/agent-subprocess.sh
diff options
context:
space:
mode:
authordtucker@openbsd.org <dtucker@openbsd.org>2020-06-19 05:07:09 +0000
committerDarren Tucker <dtucker@dtucker.net>2020-06-19 16:06:53 +1000
commit5dba1fcabacaab46693338ec829b42a1293d1f52 (patch)
tree8e292787efa12bfe9b36298bb9c35e6c5568a453 /regress/agent-subprocess.sh
parent68e8294f6b04f9590ea227e63d3e129398a49e27 (diff)
upstream: Test that ssh-agent exits when running as as subprocess
of a specified command (ie "ssh-agent command"). Would have caught bz#3181. OpenBSD-Regress-ID: 895b4765ba5153eefaea3160a7fe08ac0b6db8b3
Diffstat (limited to 'regress/agent-subprocess.sh')
-rw-r--r--regress/agent-subprocess.sh22
1 files changed, 22 insertions, 0 deletions
diff --git a/regress/agent-subprocess.sh b/regress/agent-subprocess.sh
new file mode 100644
index 000000000..2f36d70cc
--- /dev/null
+++ b/regress/agent-subprocess.sh
@@ -0,0 +1,22 @@
1# $OpenBSD: agent-subprocess.sh,v 1.1 2020/06/19 05:07:09 dtucker Exp $
2# Placed in the Public Domain.
3
4tid="agent subprocess"
5
6trace "ensure agent exits when run as subprocess"
7${SSHAGENT} sh -c "echo \$SSH_AGENT_PID >$OBJ/pidfile; sleep 1"
8
9pid=`cat $OBJ/pidfile`
10
11# Currently ssh-agent polls every 10s so we need to wait at least that long.
12n=12
13while kill -0 $pid >/dev/null 2>&1 && test "$n" -gt "0"; do
14 n=$(($n - 1))
15 sleep 1
16done
17
18if test "$n" -eq "0"; then
19 fail "agent still running"
20fi
21
22rm -f $OBJ/pidfile