2010-10-14 18:34:31 +02:00
|
|
|
# Makefile.am - For tests/openpgp
|
|
|
|
# Copyright (C) 1998, 1999, 2000, 2001, 2003,
|
|
|
|
# 2010 Free Software Foundation, Inc.
|
2006-08-21 22:20:23 +02:00
|
|
|
#
|
|
|
|
# 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
|
2007-07-04 21:49:40 +02:00
|
|
|
# the Free Software Foundation; either version 3 of the License, or
|
2006-08-21 22:20:23 +02:00
|
|
|
# (at your option) any later version.
|
2011-02-10 20:16:06 +01:00
|
|
|
#
|
2006-08-21 22:20:23 +02:00
|
|
|
# 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.
|
2011-02-10 20:16:06 +01:00
|
|
|
#
|
2006-08-21 22:20:23 +02:00
|
|
|
# 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/>.
|
2006-08-21 22:20:23 +02:00
|
|
|
# Process this file with automake to create Makefile.in
|
|
|
|
|
|
|
|
|
2010-01-08 20:18:49 +01:00
|
|
|
# Programs required before we can run these tests.
|
2016-04-04 17:42:24 +02:00
|
|
|
required_pgms = ../../g10/gpg$(EXEEXT) ../../agent/gpg-agent$(EXEEXT) \
|
2016-01-12 11:43:06 +01:00
|
|
|
../../tools/gpg-connect-agent$(EXEEXT) \
|
2016-01-07 17:01:45 +01:00
|
|
|
../gpgscm/gpgscm$(EXEEXT)
|
2010-01-08 20:18:49 +01:00
|
|
|
|
2016-01-22 11:47:58 +01:00
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/common
|
|
|
|
include $(top_srcdir)/am/cmacros.am
|
|
|
|
|
|
|
|
AM_CFLAGS =
|
|
|
|
|
|
|
|
noinst_PROGRAMS = fake-pinentry
|
|
|
|
|
|
|
|
fake_pinentry_SOURCES = fake-pinentry.c
|
|
|
|
|
2016-08-10 09:32:53 +02:00
|
|
|
TESTS_ENVIRONMENT = LC_ALL=C \
|
2016-01-07 17:01:45 +01:00
|
|
|
EXEEXT=$(EXEEXT) \
|
2020-08-04 10:20:53 +02:00
|
|
|
PATH="../gpgscm:$(PATH)" \
|
|
|
|
abs_top_srcdir="$(abs_top_srcdir)" \
|
|
|
|
objdir="$(abs_top_builddir)" \
|
|
|
|
GPGSCM_PATH="$(abs_top_srcdir)/tests/gpgscm"
|
2010-06-07 17:11:35 +02:00
|
|
|
|
2016-08-10 09:32:53 +02:00
|
|
|
XTESTS = \
|
2016-01-07 17:01:45 +01:00
|
|
|
version.scm \
|
2016-12-05 10:37:31 +01:00
|
|
|
enarmor.scm \
|
2016-01-07 17:01:45 +01:00
|
|
|
mds.scm \
|
|
|
|
decrypt.scm \
|
2016-11-29 14:25:19 +01:00
|
|
|
decrypt-multifile.scm \
|
2016-01-07 17:01:45 +01:00
|
|
|
decrypt-dsa.scm \
|
2017-01-05 17:05:59 +01:00
|
|
|
decrypt-session-key.scm \
|
2017-03-28 12:07:32 +02:00
|
|
|
decrypt-unwrap-verify.scm \
|
2016-01-07 17:01:45 +01:00
|
|
|
sigs.scm \
|
|
|
|
sigs-dsa.scm \
|
|
|
|
encrypt.scm \
|
2016-11-30 11:29:50 +01:00
|
|
|
encrypt-multifile.scm \
|
2016-01-07 17:01:45 +01:00
|
|
|
encrypt-dsa.scm \
|
2016-12-09 11:49:24 +01:00
|
|
|
compression.scm \
|
2016-01-07 17:01:45 +01:00
|
|
|
seat.scm \
|
|
|
|
clearsig.scm \
|
|
|
|
encryptp.scm \
|
|
|
|
detach.scm \
|
|
|
|
detachm.scm \
|
|
|
|
armsigs.scm \
|
|
|
|
armencrypt.scm \
|
|
|
|
armencryptp.scm \
|
|
|
|
signencrypt.scm \
|
|
|
|
signencrypt-dsa.scm \
|
|
|
|
armsignencrypt.scm \
|
|
|
|
armdetach.scm \
|
|
|
|
armdetachm.scm \
|
|
|
|
genkey1024.scm \
|
|
|
|
conventional.scm \
|
|
|
|
conventional-mdc.scm \
|
|
|
|
multisig.scm \
|
|
|
|
verify.scm \
|
2016-12-01 11:16:31 +01:00
|
|
|
verify-multifile.scm \
|
2017-06-21 12:18:24 +02:00
|
|
|
gpgv.scm \
|
2016-08-08 06:24:02 +02:00
|
|
|
gpgv-forged-keyring.scm \
|
2016-01-07 17:01:45 +01:00
|
|
|
armor.scm \
|
|
|
|
import.scm \
|
2016-12-06 15:15:52 +01:00
|
|
|
import-revocation-certificate.scm \
|
2016-01-07 17:01:45 +01:00
|
|
|
ecc.scm \
|
|
|
|
4gb-packet.scm \
|
2016-06-21 13:20:29 +02:00
|
|
|
tofu.scm \
|
2017-07-19 22:17:29 +02:00
|
|
|
trust-pgp-1.scm \
|
|
|
|
trust-pgp-2.scm \
|
|
|
|
trust-pgp-3.scm \
|
2016-01-07 17:01:45 +01:00
|
|
|
gpgtar.scm \
|
|
|
|
use-exact-key.scm \
|
|
|
|
default-key.scm \
|
2016-06-21 13:20:29 +02:00
|
|
|
export.scm \
|
2016-11-28 12:36:33 +01:00
|
|
|
ssh-import.scm \
|
2016-11-28 13:47:07 +01:00
|
|
|
ssh-export.scm \
|
2016-09-20 14:33:16 +02:00
|
|
|
quick-key-manipulation.scm \
|
2016-10-27 18:48:51 +02:00
|
|
|
key-selection.scm \
|
2016-12-19 15:33:55 +01:00
|
|
|
delete-keys.scm \
|
2017-01-24 14:20:36 +01:00
|
|
|
gpgconf.scm \
|
2016-07-18 12:51:38 +02:00
|
|
|
issue2015.scm \
|
2016-07-25 12:41:28 +02:00
|
|
|
issue2346.scm \
|
2016-08-10 16:41:22 +02:00
|
|
|
issue2417.scm \
|
2017-02-02 14:43:15 +01:00
|
|
|
issue2419.scm \
|
2017-02-08 13:49:41 +01:00
|
|
|
issue2929.scm \
|
|
|
|
issue2941.scm
|
2006-08-21 22:20:23 +02:00
|
|
|
|
2017-08-23 15:16:52 +02:00
|
|
|
# Temporary removed tests:
|
|
|
|
# trust-pgp-4.scm
|
|
|
|
|
|
|
|
|
2016-08-10 09:32:53 +02: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
|
|
|
|
|
|
|
|
.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)
|
2006-08-21 22:20:23 +02:00
|
|
|
|
|
|
|
TEST_FILES = pubring.asc secring.asc plain-1o.asc plain-2o.asc plain-3o.asc \
|
|
|
|
plain-1.asc plain-2.asc plain-3.asc plain-1-pgp.asc \
|
2016-12-20 13:57:05 +01:00
|
|
|
plain-largeo.asc plain-large.asc \
|
2006-08-21 22:20:23 +02:00
|
|
|
pubring.pkr.asc secring.skr.asc secdemo.asc pubdemo.asc \
|
2010-05-11 20:00:31 +02:00
|
|
|
bug537-test.data.asc bug894-test.asc \
|
g10: Add TOFU support.
* configure.ac: Check for sqlite3.
(SQLITE3_CFLAGS): AC_SUBST it.
(SQLITE3_LIBS): Likewise.
* g10/Makefile.am (AM_CFLAGS): Add $(SQLITE3_CFLAGS).
(gpg2_SOURCES): Add tofu.h and tofu.c.
(gpg2_LDADD): Add $(SQLITE3_LIBS).
* g10/tofu.c: New file.
* g10/tofu.h: New file.
* g10/options.h (trust_model): Define TM_TOFU and TM_TOFU_PGP.
(tofu_db_format): Define.
* g10/packet.h (PKT_signature): Add fields digest and digest_len.
* g10/gpg.c: Include "tofu.h".
(cmd_and_opt_values): Declare aTOFUPolicy, oTOFUDefaultPolicy,
oTOFUDBFormat.
(opts): Add them.
(parse_trust_model): Recognize the tofu and tofu+pgp trust models.
(parse_tofu_policy): New function.
(parse_tofu_db_format): New function.
(main): Initialize opt.tofu_default_policy and opt.tofu_db_format.
Handle aTOFUPolicy, oTOFUDefaultPolicy and oTOFUDBFormat.
* g10/mainproc.c (do_check_sig): If the signature is good, copy the
hash to SIG->DIGEST and set SIG->DIGEST_LEN appropriately.
* g10/trustdb.h (get_validity): Add arguments sig and may_ask. Update
callers.
(tdb_get_validity_core): Add arguments sig and may_ask. Update
callers.
* g10/trust.c (get_validity) Add arguments sig and may_ask. Pass them
to tdb_get_validity_core.
* g10/trustdb.c: Include "tofu.h".
(trust_model_string): Handle TM_TOFU and TM_TOFU_PGP.
(tdb_get_validity_core): Add arguments sig and may_ask. If
OPT.TRUST_MODEL is TM_TOFU or TM_TOFU_PGP, compute the TOFU trust
level. Combine it with the computed PGP trust level, if appropriate.
* g10/keyedit.c: Include "tofu.h".
(show_key_with_all_names_colon): If the trust mode is tofu or
tofu+pgp, then show the trust policy.
* g10/keylist.c: Include "tofu.h".
(public_key_list): Also show the PGP stats if the trust model is
TM_TOFU_PGP.
(list_keyblock_colon): If the trust mode is tofu or
tofu+pgp, then show the trust policy.
* g10/pkclist.c: Include "tofu.h".
* g10/gpgv.c (get_validity): Add arguments sig and may_ask.
(enum tofu_policy): Define.
(tofu_get_policy): New stub.
(tofu_policy_str): Likewise.
* g10/test-stubs.c (get_validity): Add arguments sig and may_ask.
(enum tofu_policy): Define.
(tofu_get_policy): New stub.
(tofu_policy_str): Likewise.
* doc/DETAILS: Describe the TOFU Policy field.
* doc/gpg.texi: Document --tofu-set-policy, --trust-model=tofu,
--trust-model=tofu+pgp, --tofu-default-policy and --tofu-db-format.
* tests/openpgp/Makefile.am (TESTS): Add tofu.test.
(TEST_FILES): Add tofu-keys.asc, tofu-keys-secret.asc,
tofu-2183839A-1.txt, tofu-BC15C85A-1.txt and tofu-EE37CF96-1.txt.
(CLEANFILES): Add tofu.db.
(clean-local): Add tofu.d.
* tests/openpgp/tofu.test: New file.
* tests/openpgp/tofu-2183839A-1.txt: New file.
* tests/openpgp/tofu-BC15C85A-1.txt: New file.
* tests/openpgp/tofu-EE37CF96-1.txt: New file.
* tests/openpgp/tofu-keys.asc: New file.
* tests/openpgp/tofu-keys-secret.asc: New file.
--
Signed-off-by: Neal H. Walfield <neal@g10code.com>.
2015-10-18 18:44:05 +02:00
|
|
|
bug1223-good.asc bug1223-bogus.asc 4gb-packet.asc \
|
tests: Update distributed files
* tests/openpgp/Makefile.am (TEST_FILES): Remove tofu-keys.asc,
tofu-keys-secret.asc, tofu-2183839A-1.txt, tofu-BC15C85A-1.txt and
tofu-EE37CF96-1.txt. Add tofu/conflicting/1C005AF3.gpg,
tofu/conflicting/1C005AF3-secret.gpg, tofu/conflicting/1C005AF3-1.txt,
tofu/conflicting/1C005AF3-2.txt, tofu/conflicting/1C005AF3-3.txt,
tofu/conflicting/1C005AF3-4.txt, tofu/conflicting/1C005AF3-5.txt,
tofu/conflicting/B662E42F.gpg, tofu/conflicting/B662E42F-secret.gpg,
tofu/conflicting/B662E42F-1.txt, tofu/conflicting/B662E42F-2.txt,
tofu/conflicting/B662E42F-3.txt, tofu/conflicting/B662E42F-4.txt,
tofu/conflicting/B662E42F-5.txt, tofu/conflicting/BE04EB2B.gpg,
tofu/conflicting/BE04EB2B-secret.gpg, tofu/conflicting/BE04EB2B-1.txt,
tofu/conflicting/BE04EB2B-2.txt, tofu/conflicting/BE04EB2B-3.txt,
tofu/conflicting/BE04EB2B-4.txt, tofu/conflicting/BE04EB2B-5.txt and
tofu/conflicting/README.
--
Signed-off-by: Neal H. Walfield <neal@g10code.com>
Fixes-commit: d5b18d6
2016-12-06 14:26:36 +01:00
|
|
|
tofu/conflicting/1C005AF3.gpg \
|
|
|
|
tofu/conflicting/1C005AF3-secret.gpg \
|
|
|
|
tofu/conflicting/1C005AF3-1.txt \
|
|
|
|
tofu/conflicting/1C005AF3-2.txt \
|
|
|
|
tofu/conflicting/1C005AF3-3.txt \
|
|
|
|
tofu/conflicting/1C005AF3-4.txt \
|
|
|
|
tofu/conflicting/1C005AF3-5.txt \
|
|
|
|
tofu/conflicting/B662E42F.gpg \
|
|
|
|
tofu/conflicting/B662E42F-secret.gpg \
|
|
|
|
tofu/conflicting/B662E42F-1.txt \
|
|
|
|
tofu/conflicting/B662E42F-2.txt \
|
|
|
|
tofu/conflicting/B662E42F-3.txt \
|
|
|
|
tofu/conflicting/B662E42F-4.txt \
|
|
|
|
tofu/conflicting/B662E42F-5.txt \
|
|
|
|
tofu/conflicting/BE04EB2B.gpg \
|
|
|
|
tofu/conflicting/BE04EB2B-secret.gpg \
|
|
|
|
tofu/conflicting/BE04EB2B-1.txt \
|
|
|
|
tofu/conflicting/BE04EB2B-2.txt \
|
|
|
|
tofu/conflicting/BE04EB2B-3.txt \
|
|
|
|
tofu/conflicting/BE04EB2B-4.txt \
|
|
|
|
tofu/conflicting/BE04EB2B-5.txt \
|
2016-10-13 21:38:50 +02:00
|
|
|
tofu/cross-sigs/EC38277E-secret.gpg \
|
|
|
|
tofu/cross-sigs/EC38277E-1.gpg \
|
|
|
|
tofu/cross-sigs/EC38277E-1.txt \
|
|
|
|
tofu/cross-sigs/EC38277E-2.gpg \
|
|
|
|
tofu/cross-sigs/EC38277E-2.txt \
|
|
|
|
tofu/cross-sigs/EC38277E-3.txt \
|
|
|
|
tofu/cross-sigs/871C2247-secret.gpg \
|
|
|
|
tofu/cross-sigs/871C2247-1.gpg \
|
|
|
|
tofu/cross-sigs/871C2247-1.txt \
|
|
|
|
tofu/cross-sigs/871C2247-2.gpg \
|
|
|
|
tofu/cross-sigs/871C2247-2.txt \
|
|
|
|
tofu/cross-sigs/871C2247-3.gpg \
|
|
|
|
tofu/cross-sigs/871C2247-3.txt \
|
|
|
|
tofu/cross-sigs/871C2247-4.gpg \
|
2016-10-27 18:48:51 +02:00
|
|
|
tofu/cross-sigs/README \
|
|
|
|
key-selection/0.asc \
|
|
|
|
key-selection/1.asc \
|
|
|
|
key-selection/2.asc \
|
|
|
|
key-selection/3.asc \
|
2017-07-19 22:17:29 +02:00
|
|
|
key-selection/4.asc \
|
|
|
|
trust-pgp/scenario1.asc \
|
|
|
|
trust-pgp/scenario2.asc \
|
|
|
|
trust-pgp/scenario3.asc \
|
|
|
|
trust-pgp/scenario4.asc \
|
|
|
|
trust-pgp/alice.sec.asc \
|
|
|
|
trust-pgp/bobby.sec.asc \
|
|
|
|
trust-pgp/carol.sec.asc \
|
|
|
|
trust-pgp/david.sec.asc \
|
|
|
|
trust-pgp/frank.sec.asc \
|
|
|
|
trust-pgp/grace.sec.asc \
|
|
|
|
trust-pgp/heidi.sec.asc
|
2006-08-21 22:20:23 +02:00
|
|
|
|
2010-10-14 18:34:31 +02:00
|
|
|
data_files = data-500 data-9000 data-32000 data-80000 plain-large
|
|
|
|
|
|
|
|
priv_keys = privkeys/50B2D4FA4122C212611048BC5FC31BD44393626E.asc \
|
|
|
|
privkeys/7E201E28B6FEB2927B321F443205F4724EBE637E.asc \
|
|
|
|
privkeys/13FDB8809B17C5547779F9D205C45F47CE0217CE.asc \
|
|
|
|
privkeys/343D8AF79796EE107D645A2787A9D9252F924E6F.asc \
|
|
|
|
privkeys/8B5ABF3EF9EB8D96B91A0B8C2C4401C91C834C34.asc \
|
|
|
|
privkeys/0D6F6AD4C4C803B25470F9104E9F4E6A4CA64255.asc \
|
|
|
|
privkeys/FD692BD59D6640A84C8422573D469F84F3B98E53.asc \
|
|
|
|
privkeys/76F7E2B35832976B50A27A282D9B87E44577EB66.asc \
|
2014-09-12 11:31:49 +02:00
|
|
|
privkeys/A0747D5F9425E6664F4FFBEED20FBCA79FDED2BD.asc \
|
2015-05-16 12:20:02 +02:00
|
|
|
privkeys/0DD40284FF992CD24DC4AAC367037E066FCEE26A.asc \
|
|
|
|
privkeys/2BC997C0B8691D41D29A4EC81CCBCF08454E4961.asc \
|
|
|
|
privkeys/3C9D5ECA70130C2DBB1FC6AC0076BEEEC197716F.asc \
|
|
|
|
privkeys/449E644892C951A37525654730DD32C202079926.asc \
|
|
|
|
privkeys/58FFE844087634E62440224908BDE44BEA7EB730.asc \
|
|
|
|
privkeys/4DF9172D6FF428C97A0E9AA96F03E8BCE3B2F188.asc \
|
|
|
|
privkeys/9D7CD8F53F2F14C3E2177D1E9D1D11F39513A4A4.asc \
|
|
|
|
privkeys/6E6B7ED0BD4425018FFC54F3921D5467A3AE00EB.asc \
|
|
|
|
privkeys/C905D0AB6AE9655C5A35975939997BBF3325D6DD.asc \
|
|
|
|
privkeys/B2BAA7144303DF19BB6FDE23781DD3FDD97918D4.asc \
|
|
|
|
privkeys/CF60965BF51F67CF80DECE853E0D2D343468571D.asc \
|
2015-12-02 20:51:52 +01:00
|
|
|
privkeys/DF00E361D34F80868D06879AC21D7A7D4E4FAD76.asc \
|
|
|
|
privkeys/00FE67F28A52A8AA08FFAED20AF832DA916D1985.asc \
|
|
|
|
privkeys/1DF48228FEFF3EC2481B106E0ACA8C465C662CC5.asc \
|
|
|
|
privkeys/A2832820DC9F40751BDCD375BB0945BA33EC6B4C.asc \
|
|
|
|
privkeys/ADE710D74409777B7729A7653373D820F67892E0.asc \
|
2016-06-22 11:20:35 +02:00
|
|
|
privkeys/CEFC51AF91F68A2904FBFF62C4F075A4785B803F.asc \
|
|
|
|
privkeys/1E28F20E41B54C2D1234D896096495FF57E08D18.asc \
|
|
|
|
privkeys/EB33B687EB8581AB64D04852A54453E85F3DF62D.asc \
|
|
|
|
privkeys/C6A6390E9388CDBAD71EAEA698233FE5E04F001E.asc \
|
|
|
|
privkeys/D69102E0F5AC6B6DB8E4D16DA8E18CF46D88CAE3.asc
|
2010-10-14 18:34:31 +02:00
|
|
|
|
2016-06-28 09:40:35 +02:00
|
|
|
sample_keys = samplekeys/README \
|
|
|
|
samplekeys/ecc-sample-1-pub.asc \
|
2011-02-10 20:16:06 +01:00
|
|
|
samplekeys/ecc-sample-2-pub.asc \
|
|
|
|
samplekeys/ecc-sample-3-pub.asc \
|
|
|
|
samplekeys/ecc-sample-1-sec.asc \
|
|
|
|
samplekeys/ecc-sample-2-sec.asc \
|
2014-09-12 11:31:49 +02:00
|
|
|
samplekeys/ecc-sample-3-sec.asc \
|
|
|
|
samplekeys/eddsa-sample-1-pub.asc \
|
2014-10-13 13:56:47 +02:00
|
|
|
samplekeys/eddsa-sample-1-sec.asc \
|
|
|
|
samplekeys/dda252ebb8ebe1af-1.asc \
|
2015-05-16 12:20:02 +02:00
|
|
|
samplekeys/dda252ebb8ebe1af-2.asc \
|
2015-10-05 10:58:00 +02:00
|
|
|
samplekeys/whats-new-in-2.1.asc \
|
|
|
|
samplekeys/e2e-p256-1-clr.asc \
|
2015-12-02 20:51:52 +01:00
|
|
|
samplekeys/e2e-p256-1-prt.asc \
|
2016-06-22 11:20:35 +02:00
|
|
|
samplekeys/E657FB607BB4F21C90BB6651BC067AF28BC90111.asc \
|
|
|
|
samplekeys/rsa-rsa-sample-1.asc \
|
2016-06-28 09:40:35 +02:00
|
|
|
samplekeys/ed25519-cv25519-sample-1.asc \
|
2016-07-19 16:17:22 +02:00
|
|
|
samplekeys/silent-running.asc \
|
|
|
|
samplekeys/ssh-dsa.key \
|
|
|
|
samplekeys/ssh-ecdsa.key \
|
|
|
|
samplekeys/ssh-ed25519.key \
|
2016-07-26 16:03:06 +02:00
|
|
|
samplekeys/ssh-rsa.key \
|
2016-11-28 13:47:07 +01:00
|
|
|
samplekeys/issue2346.gpg \
|
|
|
|
samplekeys/authenticate-only.pub.asc \
|
|
|
|
samplekeys/authenticate-only.sec.asc
|
2006-08-21 22:20:23 +02:00
|
|
|
|
2017-03-28 12:22:18 +02:00
|
|
|
sample_msgs = samplemsgs/clearsig-1-key-1.asc \
|
|
|
|
samplemsgs/clearsig-2-keys-1.asc \
|
|
|
|
samplemsgs/clearsig-2-keys-2.asc \
|
|
|
|
samplemsgs/enc-1-key-1.asc \
|
|
|
|
samplemsgs/enc-1-key-2.asc \
|
|
|
|
samplemsgs/enc-2-keys-1.asc \
|
|
|
|
samplemsgs/enc-2-keys-2.asc \
|
|
|
|
samplemsgs/enc-2-keys-hh-1.asc \
|
|
|
|
samplemsgs/enc-2-keys-hr-1.asc \
|
|
|
|
samplemsgs/enc-2-keys-rh-1.asc \
|
|
|
|
samplemsgs/encsig-2-2-keys-3.asc \
|
|
|
|
samplemsgs/encsig-2-2-keys-4.asc \
|
|
|
|
samplemsgs/encsig-2-keys-1.asc \
|
|
|
|
samplemsgs/encsig-2-keys-2.asc \
|
|
|
|
samplemsgs/encsig-2-keys-3.asc \
|
|
|
|
samplemsgs/encsig-2-keys-4.asc \
|
|
|
|
samplemsgs/encz0-1-key-1.asc \
|
|
|
|
samplemsgs/encz0-1-key-2.asc \
|
|
|
|
samplemsgs/issue2419.asc \
|
|
|
|
samplemsgs/revoke-2D727CC768697734.asc \
|
|
|
|
samplemsgs/sig-1-key-1.asc \
|
|
|
|
samplemsgs/sig-1-key-2.asc \
|
|
|
|
samplemsgs/sig-2-keys-1.asc \
|
|
|
|
samplemsgs/sig-2-keys-2.asc \
|
2016-12-06 15:15:52 +01:00
|
|
|
samplemsgs/signed-1-key-1.asc \
|
2017-03-28 12:22:18 +02:00
|
|
|
samplemsgs/signed-1-key-2.asc \
|
|
|
|
samplemsgs/signed-2-keys-1.asc \
|
|
|
|
samplemsgs/signed-2-keys-2.asc
|
2016-07-28 18:11:50 +02:00
|
|
|
|
2017-07-19 22:17:29 +02:00
|
|
|
EXTRA_DIST = defs.scm trust-pgp/common.scm $(XTESTS) $(TEST_FILES) \
|
2016-06-17 21:16:37 +02:00
|
|
|
mkdemodirs signdemokey $(priv_keys) $(sample_keys) \
|
2017-08-23 15:16:52 +02:00
|
|
|
$(sample_msgs) ChangeLog-2011 run-tests.scm trust-pgp-4.scm \
|
2017-06-21 12:18:24 +02:00
|
|
|
setup.scm shell.scm all-tests.scm signed-messages.scm
|
2010-05-11 20:00:31 +02:00
|
|
|
|
2010-10-14 18:34:31 +02:00
|
|
|
CLEANFILES = prepared.stamp x y yy z out err $(data_files) \
|
2006-08-21 22:20:23 +02:00
|
|
|
plain-1 plain-2 plain-3 trustdb.gpg *.lock .\#lk* \
|
2016-11-07 17:44:34 +01:00
|
|
|
*.log gpg_dearmor gpg.conf gpg-agent.conf S.gpg-agent \
|
2014-10-03 13:02:06 +02:00
|
|
|
pubring.gpg pubring.gpg~ pubring.kbx pubring.kbx~ \
|
|
|
|
secring.gpg pubring.pkr secring.skr \
|
2016-06-16 16:56:42 +02:00
|
|
|
gnupg-test.stop random_seed gpg-agent.log tofu.db \
|
2017-04-18 18:51:06 +02:00
|
|
|
passphrases sshcontrol S.gpg-agent.ssh report.xml
|
2010-10-15 11:16:39 +02:00
|
|
|
|
2020-04-03 08:30:08 +02:00
|
|
|
XTESTS += trust-pgp-4.scm
|
|
|
|
|
2010-10-15 11:16:39 +02:00
|
|
|
clean-local:
|
2015-11-25 18:32:09 +01:00
|
|
|
-rm -rf private-keys-v1.d openpgp-revocs.d tofu.d gpgtar.d
|
2006-10-02 13:54:35 +02:00
|
|
|
|
2006-08-21 22:20:23 +02:00
|
|
|
|
2010-01-08 20:18:49 +01:00
|
|
|
# We need to depend on a couple of programs so that the tests don't
|
|
|
|
# start before all programs are built.
|
2010-10-14 18:34:31 +02:00
|
|
|
all-local: $(required_pgms)
|