File: gsasl-dovecot-gssapi-heimdal

package info (click to toggle)
libgssglue 0.9-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 500 kB
  • sloc: ansic: 3,532; sh: 219; makefile: 51
file content (16 lines) | stat: -rwxr-xr-x 298 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

set -e
set -x

if command -v valgrind; then
    VALGRIND="valgrind --error-exitcode=1"
fi

echo 'libgssapi.so.3 mechglue_internal_krb5_init' > my_gssapi_mech.conf

GSSAPI_MECH_CONF=my_gssapi_mech.conf \
		GSASL="$VALGRIND /usr/bin/gsasl" \
		debian/tests/gsasl-dovecot-gssapi.sh

exit 0