summaryrefslogtreecommitdiff
path: root/src/testing
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2021-07-30 18:02:29 +0200
committerChristian Grothoff <christian@grothoff.org>2021-07-30 18:02:29 +0200
commite7a9a2911cf0e5ddcf8b42a21da57b7096ece0d0 (patch)
tree81ba4d17de45d0b778845c942e48e5a59a85e71c /src/testing
parent12e7f405645a69e79f046313df97273eed2893ee (diff)
downloadexchange-e7a9a2911cf0e5ddcf8b42a21da57b7096ece0d0.tar.gz
exchange-e7a9a2911cf0e5ddcf8b42a21da57b7096ece0d0.tar.bz2
exchange-e7a9a2911cf0e5ddcf8b42a21da57b7096ece0d0.zip
-add logic to purge SECM_TOFU_FILE when purging secmod KEY_DIRS
Diffstat (limited to 'src/testing')
-rw-r--r--src/testing/testing_api_helpers_exchange.c23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/testing/testing_api_helpers_exchange.c b/src/testing/testing_api_helpers_exchange.c
index bc301d77f..8a4d71c58 100644
--- a/src/testing/testing_api_helpers_exchange.c
+++ b/src/testing/testing_api_helpers_exchange.c
@@ -78,6 +78,29 @@ int
TALER_TESTING_cleanup_files_cfg (void *cls,
const struct GNUNET_CONFIGURATION_Handle *cfg)
{
+ char *dir;
+
+ if (GNUNET_OK !=
+ GNUNET_CONFIGURATION_get_value_filename (cfg,
+ "exchange-offline",
+ "SECM_TOFU_FILE",
+ &dir))
+ {
+ GNUNET_log_config_missing (GNUNET_ERROR_TYPE_ERROR,
+ "exchange-offline",
+ "SECM_TOFU_FILE");
+ return GNUNET_SYSERR;
+ }
+ if ( (0 != unlink (dir)) &&
+ (ENOENT != errno) )
+ {
+ GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_ERROR,
+ "unlink",
+ dir);
+ GNUNET_free (dir);
+ return GNUNET_SYSERR;
+ }
+ GNUNET_free (dir);
if (GNUNET_OK !=
remove_dir (cfg,
"taler-exchange-secmod-eddsa",