Blame tests/suite/tls-fuzzer/tls-fuzzer-common.sh

Packit aea12f
#!/bin/bash
Packit aea12f
Packit aea12f
# Copyright (C) 2016-2018 Red Hat, Inc.
Packit aea12f
#
Packit aea12f
# This file is part of GnuTLS.
Packit aea12f
#
Packit aea12f
# GnuTLS is free software; you can redistribute it and/or modify it
Packit aea12f
# under the terms of the GNU General Public License as published by the
Packit aea12f
# Free Software Foundation; either version 3 of the License, or (at
Packit aea12f
# your option) any later version.
Packit aea12f
#
Packit aea12f
# GnuTLS is distributed in the hope that it will be useful, but
Packit aea12f
# WITHOUT ANY WARRANTY; without even the implied warranty of
Packit aea12f
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit aea12f
# General Public License for more details.
Packit aea12f
#
Packit aea12f
# You should have received a copy of the GNU General Public License
Packit aea12f
# along with GnuTLS; if not, write to the Free Software Foundation,
Packit aea12f
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
Packit aea12f
Packit aea12f
builddir=`pwd`
Packit aea12f
CLI="${builddir}/../../src/gnutls-cli${EXEEXT}"
Packit aea12f
SERV="${builddir}/../../src/gnutls-serv${EXEEXT}"
Packit aea12f
Packit aea12f
TMPFILE="${builddir}/tls-fuzzer.$$.tmp"
Packit aea12f
PSKFILE="${builddir}/tls-fuzzer.psk.$$.tmp"
Packit aea12f
Packit aea12f
. "${srcdir}/../scripts/common.sh"
Packit aea12f
Packit aea12f
eval "${GETPORT}"
Packit aea12f
Packit aea12f
if ! test -d "${srcdir}/tls-fuzzer/tlsfuzzer" ; then
Packit aea12f
	exit 77
Packit aea12f
fi
Packit aea12f
Packit aea12f
pushd "${srcdir}/tls-fuzzer/tlsfuzzer"
Packit aea12f
Packit aea12f
test -L ecdsa || ln -s ../python-ecdsa/src/ecdsa ecdsa
Packit aea12f
test -L tlslite || ln -s ../tlslite-ng/tlslite tlslite 2>/dev/null
Packit aea12f
Packit aea12f
wait_for_free_port $PORT
Packit aea12f
Packit aea12f
retval=0
Packit aea12f
Packit aea12f
tls_fuzzer_prepare
Packit aea12f
Packit aea12f
PYTHONPATH=. python tests/scripts_retention.py ${TMPFILE} ${SERV} 821
Packit aea12f
retval=$?
Packit aea12f
Packit aea12f
rm -f ${TMPFILE}
Packit aea12f
[ -f "${PSKFILE}" ] && rm -f ${PSKFILE}
Packit aea12f
Packit aea12f
popd
Packit aea12f
Packit aea12f
exit $retval