aboutsummaryrefslogtreecommitdiffstats
path: root/tests/migrations/extended-private-key-format.test
diff options
context:
space:
mode:
authorJustus Winter <[email protected]>2016-06-21 16:10:18 +0000
committerJustus Winter <[email protected]>2016-06-21 16:15:30 +0000
commitf548383d9af912bf93217068cc8aa99a9a6eda93 (patch)
tree61786a73598fb2ad30eba9bd9e98d7be4543e117 /tests/migrations/extended-private-key-format.test
parentgpgscm: Add more file handling functions. (diff)
downloadgnupg-f548383d9af912bf93217068cc8aa99a9a6eda93.tar.gz
gnupg-f548383d9af912bf93217068cc8aa99a9a6eda93.zip
tests/migrations: Convert to Scheme and re-enable.
* configure.ac: Re-enable. * tests/Makefile.am: Likewise. * tests/migrations/Makefile.am (TESTS): Use Scheme tests. * tests/migrations/common.scm: New file. * tests/migrations/extended-private-key-format.scm: Likewise. * tests/migrations/from-classic.scm: Likewise. * tests/migrations/extended-private-key-format.test: Drop file. * tests/migrations/from-classic.test: Drop file. Signed-off-by: Justus Winter <[email protected]>
Diffstat (limited to 'tests/migrations/extended-private-key-format.test')
-rwxr-xr-xtests/migrations/extended-private-key-format.test57
1 files changed, 0 insertions, 57 deletions
diff --git a/tests/migrations/extended-private-key-format.test b/tests/migrations/extended-private-key-format.test
deleted file mode 100755
index 9c373e877..000000000
--- a/tests/migrations/extended-private-key-format.test
+++ /dev/null
@@ -1,57 +0,0 @@
-#!/bin/sh
-# Copyright 2016 g10 Code GmbH
-#
-# This file is free software; as a special exception the author gives
-# unlimited permission to copy and/or distribute it, with or without
-# modifications, as long as this notice is preserved. This file is
-# distributed in the hope that it will be useful, but WITHOUT ANY
-# WARRANTY, to the extent permitted by law; without even the implied
-# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-
-if [ -z "$srcdir" ]; then
- echo "not called from make" >&2
- exit 1
-fi
-
-unset GNUPGHOME
-set -e
-
-# (We may not use a relative name for gpg-agent.)
-GPG_AGENT="$(cd ../../agent && /bin/pwd)/gpg-agent"
-GPG="../../g10/gpg --no-permission-warning --no-greeting --no-secmem-warning
---batch --agent-program=${GPG_AGENT}|--debug-quick-random"
-
-TEST="extended-private-key-format"
-
-setup_home()
-{
- XGNUPGHOME="`mktemp -d`"
- mkdir -p "$XGNUPGHOME/private-keys-v1.d"
- for F in $srcdir/$TEST.gpghome/*.asc; do
- $GPG --dearmor <"$F" >"$XGNUPGHOME/`basename $F .asc`"
- done
- for F in $srcdir/$TEST.gpghome/private-keys-v1.d/*.asc; do
- $GPG --dearmor <"$F" >"$XGNUPGHOME/private-keys-v1.d/`basename $F .asc`"
- done
- chmod go-rwx $XGNUPGHOME/* $XGNUPGHOME/*/*
- export GNUPGHOME="$XGNUPGHOME"
-}
-
-cleanup_home()
-{
- rm -rf -- "$XGNUPGHOME"
-}
-
-assert_keys_usable()
-{
- for KEY in C40FDECF ECABF51D; do
- $GPG --list-secret-keys $KEY >/dev/null
- done
-}
-
-setup_home
-assert_keys_usable
-cleanup_home
-
-
-# XXX try changing a key, and check that the format is not changed.