2016-04-20 14:48:12 +02:00
|
|
|
# Makefile.am - For tests/openpgp
|
|
|
|
# Copyright (C) 2016 g10 Code GmbH
|
|
|
|
#
|
|
|
|
# This file is part of GnuPG.
|
|
|
|
#
|
|
|
|
# GnuPG is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# GnuPG is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
2016-11-05 12:02:19 +01:00
|
|
|
# along with this program; if not, see <https://www.gnu.org/licenses/>.
|
2016-04-20 14:48:12 +02:00
|
|
|
# Process this file with automake to create Makefile.in
|
|
|
|
|
|
|
|
|
|
|
|
# Programs required before we can run these tests.
|
2016-07-15 17:20:18 +02:00
|
|
|
required_pgms = ../../g10/gpg$(EXEEXT) ../../agent/gpg-agent$(EXEEXT) \
|
2016-12-19 17:28:43 +01:00
|
|
|
../../tools/gpgtar$(EXEEXT) \
|
|
|
|
../gpgscm/gpgscm$(EXEEXT)
|
2016-04-20 14:48:12 +02:00
|
|
|
|
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/common
|
|
|
|
include $(top_srcdir)/am/cmacros.am
|
|
|
|
|
|
|
|
AM_CFLAGS =
|
|
|
|
|
2016-06-21 18:10:18 +02:00
|
|
|
TESTS_ENVIRONMENT = GPG_AGENT_INFO= LC_ALL=C \
|
2016-12-19 17:28:43 +01:00
|
|
|
EXEEXT=$(EXEEXT) \
|
2016-06-21 18:10:18 +02:00
|
|
|
PATH=../gpgscm:$(PATH) \
|
2017-03-22 12:40:42 +01:00
|
|
|
abs_top_srcdir=$(abs_top_srcdir) \
|
2016-12-19 17:28:43 +01:00
|
|
|
objdir=$(abs_top_builddir) \
|
2017-03-22 12:40:42 +01:00
|
|
|
GPGSCM_PATH=$(abs_top_srcdir)/tests/gpgscm
|
2016-04-20 14:48:12 +02:00
|
|
|
|
2016-12-19 17:28:43 +01:00
|
|
|
XTESTS = from-classic.scm \
|
2016-07-22 13:29:26 +02:00
|
|
|
extended-pkf.scm \
|
|
|
|
issue2276.scm
|
2016-07-05 15:13:25 +02:00
|
|
|
|
|
|
|
TEST_FILES = from-classic.tar.asc \
|
2016-07-22 13:29:26 +02:00
|
|
|
extended-pkf.tar.asc \
|
|
|
|
issue2276.tar.asc
|
2016-07-05 15:13:25 +02:00
|
|
|
|
2016-12-19 17:28:43 +01:00
|
|
|
# XXX: Currently, one cannot override automake's 'check' target. As a
|
|
|
|
# workaround, we avoid defining 'TESTS', thus automake will not emit
|
|
|
|
# the 'check' target. For extra robustness, we merely define a
|
|
|
|
# dependency on 'xcheck', so this hack should also work even if
|
|
|
|
# automake would emit the 'check' target, as adding dependencies to
|
|
|
|
# targets is okay.
|
|
|
|
check: xcheck
|
2016-04-20 14:48:12 +02:00
|
|
|
|
2016-12-19 17:28:43 +01:00
|
|
|
.PHONY: xcheck
|
|
|
|
xcheck:
|
|
|
|
$(TESTS_ENVIRONMENT) $(abs_top_builddir)/tests/gpgscm/gpgscm \
|
2017-03-20 10:30:08 +01:00
|
|
|
$(abs_srcdir)/run-tests.scm $(TESTFLAGS) $(TESTS)
|
2016-04-20 14:48:12 +02:00
|
|
|
|
2017-03-20 10:30:08 +01:00
|
|
|
EXTRA_DIST = common.scm run-tests.scm setup.scm all-tests.scm \
|
|
|
|
$(XTESTS) $(TEST_FILES)
|
2016-12-19 17:28:43 +01:00
|
|
|
|
2017-04-18 18:51:06 +02:00
|
|
|
CLEANFILES = *.log report.xml
|
2016-04-20 14:48:12 +02:00
|
|
|
|
|
|
|
# We need to depend on a couple of programs so that the tests don't
|
|
|
|
# start before all programs are built.
|
|
|
|
all-local: $(required_pgms)
|