summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--regress/Makefile3
-rw-r--r--regress/agent-subprocess.sh22
2 files changed, 24 insertions, 1 deletions
diff --git a/regress/Makefile b/regress/Makefile
index 62794d25f..db0268fc0 100644
--- a/regress/Makefile
+++ b/regress/Makefile
@@ -1,4 +1,4 @@
1# $OpenBSD: Makefile,v 1.108 2020/04/20 04:44:47 djm Exp $ 1# $OpenBSD: Makefile,v 1.109 2020/06/19 05:07:09 dtucker Exp $
2 2
3tests: prep file-tests t-exec unit 3tests: prep file-tests t-exec unit
4 4
@@ -41,6 +41,7 @@ LTESTS= connect \
41 agent-getpeereid \ 41 agent-getpeereid \
42 agent-timeout \ 42 agent-timeout \
43 agent-ptrace \ 43 agent-ptrace \
44 agent-subprocess \
44 keyscan \ 45 keyscan \
45 keygen-change \ 46 keygen-change \
46 keygen-convert \ 47 keygen-convert \
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