summaryrefslogtreecommitdiff
path: root/tests/tstunt/gpg
blob: 7e12846c46470a1418d7b53a6f49b33018555dbb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh
set -e

exec \
with-lock-ex -w "$DGIT_TEST_GNUPG_GLOBAL_LOCK" \
	sh -c '
		"$@" 9>&2 2>>"$DGIT_TEST_GNUPG_LOG"
		rc=$?
		if [ rc = 0 ]; then exit 0; fi
		if [ "x$DGIT_TEST_BYHAND" != x ]; then
			echo >&2 "BYHAND, not catting $DGIT_TEST_GNUPG_LOG"
		else
			echo >&2 "########################################"
			echo >&2 "$DGIT_TEST_GNUPG_LOG"
			cat >&2 "$DGIT_TEST_GNUPG_LOG"
			echo >&2 "end of $DGIT_TEST_GNUPG_LOG"
		fi
		exit $rc
	' x \
	"$DGIT_TEST_TROOT"/tstunt/gpg-withagent "$@"