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
|
|
|
|
# along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
|
|
# 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) \
|
|
|
|
../../tools/gpgtar$(EXEEXT)
|
2016-04-20 14:48:12 +02:00
|
|
|
|
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/common
|
|
|
|
include $(top_srcdir)/am/cmacros.am
|
|
|
|
|
|
|
|
AM_CFLAGS =
|
|
|
|
|
2016-07-05 16:25:21 +02:00
|
|
|
TMP ?= /tmp
|
|
|
|
|
2016-06-21 18:10:18 +02:00
|
|
|
TESTS_ENVIRONMENT = GPG_AGENT_INFO= LC_ALL=C \
|
|
|
|
PATH=../gpgscm:$(PATH) \
|
2016-07-05 16:25:21 +02:00
|
|
|
TMP=$(TMP) \
|
2016-06-21 18:10:18 +02:00
|
|
|
GPGSCM_PATH=$(top_srcdir)/tests/gpgscm:$(top_srcdir)/tests/migrations
|
2016-04-20 14:48:12 +02:00
|
|
|
|
2016-06-21 18:10:18 +02:00
|
|
|
TESTS = 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
|
|
|
|
|
|
|
EXTRA_DIST = common.scm $(TESTS) $(TEST_FILES)
|
2016-04-20 14:48:12 +02:00
|
|
|
|
|
|
|
CLEANFILES = prepared.stamp x y yy z out err $(data_files) \
|
|
|
|
plain-1 plain-2 plain-3 trustdb.gpg *.lock .\#lk* \
|
|
|
|
*.test.log gpg_dearmor gpg.conf gpg-agent.conf S.gpg-agent \
|
|
|
|
pubring.gpg pubring.gpg~ pubring.kbx pubring.kbx~ \
|
|
|
|
secring.gpg pubring.pkr secring.skr \
|
|
|
|
gnupg-test.stop random_seed gpg-agent.log tofu.db
|
|
|
|
|
|
|
|
clean-local:
|
|
|
|
-rm -rf from-classic.gpghome/*.gpg
|
|
|
|
|
|
|
|
# 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)
|