diff options
author | Werner Koch <[email protected]> | 2013-10-22 12:26:53 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2013-12-05 09:50:27 +0000 |
commit | 9b516323d7dc3e6103745becb63f5cc9fd8cc606 (patch) | |
tree | 32d64bd39029427f1fcace354a5103ff9d64d60e | |
parent | Normalize the MPIs used as input to secret key functions. (diff) | |
download | gnupg-9b516323d7dc3e6103745becb63f5cc9fd8cc606.tar.gz gnupg-9b516323d7dc3e6103745becb63f5cc9fd8cc606.zip |
Prepare for newer automakes which default to parallel tests.
* checks/Makefile.am: Add a list of test dependencies.
--
We want to keep the tests in a specific order because that helps to
compare tests and some tests rely on others anyway.
Signed-off-by: Werner Koch <[email protected]>
-rw-r--r-- | checks/Makefile.am | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/checks/Makefile.am b/checks/Makefile.am index 0cfbe1c8f..179109109 100644 --- a/checks/Makefile.am +++ b/checks/Makefile.am @@ -30,6 +30,35 @@ TESTS = version.test mds.test \ conventional.test conventional-mdc.test \ multisig.test verify.test armor.test +# Force sequential run of tests as in the good old times +mds.log: version.log +decrypt.log: mds.log +decrypt-dsa.log: decrypt.log +sigs.log: decrypt-dsa.log +sigs-dsa.log: sigs.log +encrypt.log: sigs-dsa.log +encrypt-dsa.log: encrypt.log +seat.log: encrypt-dsa.log +clearsig.log: seat.log +encryptp.log: clearsig.log +detach.log: encryptp.log +armsigs.log: detach.log +armencrypt.log: armsigs.log +armencryptp.log: armencrypt.log +signencrypt.log: armencryptp.log +signencrypt-dsa.log: signencrypt.log +armsignencrypt.log: signencrypt-dsa.log +armdetach.log: armsignencrypt.log +armdetachm.log: armdetach.log +detachm.log: armdetachm.log +genkey1024.log: detachm.log +conventional.log: genkey1024.log +conventional-mdc.log: conventional.log +multisig.log: conventional-mdc.log +verify.log: multisig.log +armor.log: verify.log + + 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 \ |