Blame tests/systemkey.sh

Packit 549fdc
#!/bin/sh
Packit 549fdc
Packit 549fdc
# Copyright (C) 2017 Red Hat, Inc.
Packit 549fdc
#
Packit 549fdc
# Author: Nikos Mavrogiannopoulos
Packit 549fdc
#
Packit 549fdc
# This file is part of GnuTLS.
Packit 549fdc
#
Packit 549fdc
# GnuTLS is free software; you can redistribute it and/or modify it
Packit 549fdc
# under the terms of the GNU General Public License as published by the
Packit 549fdc
# Free Software Foundation; either version 3 of the License, or (at
Packit 549fdc
# your option) any later version.
Packit 549fdc
#
Packit 549fdc
# GnuTLS is distributed in the hope that it will be useful, but
Packit 549fdc
# WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 549fdc
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit 549fdc
# General Public License for more details.
Packit 549fdc
#
Packit 549fdc
# You should have received a copy of the GNU General Public License
Packit 549fdc
# along with GnuTLS; if not, write to the Free Software Foundation,
Packit 549fdc
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
Packit 549fdc
Packit 549fdc
srcdir="${srcdir:-.}"
Packit 549fdc
SYSTEMKEY="${SYSTEMKEY:-../src/systemkey${EXEEXT}}"
Packit 549fdc
unset RETCODE
Packit 549fdc
Packit 549fdc
. "${srcdir}/scripts/common.sh"
Packit 549fdc
Packit 549fdc
if ! test -x $SYSTEMKEY;then
Packit 549fdc
	exit 77
Packit 549fdc
fi
Packit 549fdc
Packit 549fdc
# Basic check for system key support. This is a superficial
Packit 549fdc
# check ensuring that at least the listing works.
Packit 549fdc
Packit 549fdc
${SYSTEMKEY} --list
Packit 549fdc
rc=$?
Packit 549fdc
if test $rc != 0 && test $rc != 1;then
Packit 549fdc
	echo "There was an issue listing system keys"
Packit 549fdc
	exit 1
Packit 549fdc
fi
Packit 549fdc
Packit 549fdc
exit 0