Skip to content

Commit

Permalink
loggin
Browse files Browse the repository at this point in the history
  • Loading branch information
geedo0 committed Aug 14, 2024
1 parent a25e2cb commit 5bb10c7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion oqs-test/run_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,5 @@ SKIPPED_DUE_TO_CERTIFIED_KEYS="agent \
cert-userkey \
cert-file \
sshsig"
make tests -e SKIP_LTESTS="${INVESTIGATE_FURTHER} ${SKIPPED_DUE_TO_CERTIFIED_KEYS}"
# make tests -e SKIP_LTESTS="${INVESTIGATE_FURTHER} ${SKIPPED_DUE_TO_CERTIFIED_KEYS}"
make tests -e SKIP_UNIT=1 LTESTS=agent-subprocess
4 changes: 3 additions & 1 deletion regress/agent-subprocess.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# $OpenBSD: agent-subprocess.sh,v 1.1 2020/06/19 05:07:09 dtucker Exp $
# Placed in the Public Domain.

set -x
tid="agent subprocess"

trace "ensure agent exits when run as subprocess"
Expand All @@ -11,6 +11,8 @@ pid=`cat $OBJ/pidfile`
# Currently ssh-agent polls every 10s so we need to wait at least that long.
n=12
while kill -0 $pid >/dev/null 2>&1 && test "$n" -gt "0"; do
kill -0 $pid
echo $?
n=$(($n - 1))
sleep 1
done
Expand Down

0 comments on commit 5bb10c7

Please sign in to comment.