summaryrefslogtreecommitdiff
path: root/src/mintdb/test_perf_taler_mintdb.c
diff options
context:
space:
mode:
authorFournier Nicolas <nicolas.fournier@ensta-paristech.fr>2015-08-06 15:13:37 +0200
committerFournier Nicolas <nicolas.fournier@ensta-paristech.fr>2015-08-06 15:13:37 +0200
commit7288765704aa3bb3902bcf0da7d7b55e66dce963 (patch)
tree16824aebcac09fce688efb8df123f115bb0134f3 /src/mintdb/test_perf_taler_mintdb.c
parentc1ff80a106c2986ea49cf0ea8544057def633566 (diff)
downloadexchange-7288765704aa3bb3902bcf0da7d7b55e66dce963.tar.gz
exchange-7288765704aa3bb3902bcf0da7d7b55e66dce963.tar.bz2
exchange-7288765704aa3bb3902bcf0da7d7b55e66dce963.zip
added memory testing
Diffstat (limited to 'src/mintdb/test_perf_taler_mintdb.c')
-rw-r--r--src/mintdb/test_perf_taler_mintdb.c38
1 files changed, 36 insertions, 2 deletions
diff --git a/src/mintdb/test_perf_taler_mintdb.c b/src/mintdb/test_perf_taler_mintdb.c
index 26f142a21..c1e287849 100644
--- a/src/mintdb/test_perf_taler_mintdb.c
+++ b/src/mintdb/test_perf_taler_mintdb.c
@@ -20,6 +20,7 @@
*/
#include "platform.h"
#include "perf_taler_mintdb_interpreter.h"
+#include "perf_taler_mintdb_init.h"
#define NB_DENOMINATION_INIT 2
@@ -35,13 +36,46 @@
#define NB_WITHDRAW_SAVE 1
/**
+ * Allocate, copies and free all the data used in the interpreter
+ * Used to check for memory leaks
+ */
+void
+test_alocate ()
+{
+ struct TALER_MINTDB_DenominationKeyIssueInformation *dki, *dki_copy;
+ struct PERF_TALER_MINTDB_Reserve *reserve, *reserve_copy;
+ struct PERF_TALER_MINTDB_Coin *coin, *coin_copy;
+ struct TALER_MINTDB_Deposit *deposit, *deposit_copy;
+
+ dki = PERF_TALER_MINTDB_denomination_init ();
+ reserve = PERF_TALER_MINTDB_reserve_init ();
+ coin = PERF_TALER_MINTDB_coin_init (dki,
+ reserve);
+ deposit = PERF_TALER_MINTDB_deposit_init (coin);
+
+ dki_copy = PERF_TALER_MINTDB_denomination_copy (dki);
+ reserve_copy = PERF_TALER_MINTDB_reserve_copy (reserve);
+ coin_copy = PERF_TALER_MINTDB_coin_copy (coin);
+ deposit_copy = PERF_TALER_MINTDB_deposit_copy (deposit);
+
+ PERF_TALER_MINTDB_denomination_free (dki);
+ PERF_TALER_MINTDB_denomination_free (dki_copy);
+ PERF_TALER_MINTDB_reserve_free (reserve);
+ PERF_TALER_MINTDB_reserve_free (reserve_copy);
+ PERF_TALER_MINTDB_coin_free (coin);
+ PERF_TALER_MINTDB_coin_free (coin_copy);
+ PERF_TALER_MINTDB_deposit_free (deposit);
+ PERF_TALER_MINTDB_deposit_free (deposit_copy);
+}
+
+/**
* Runs the performances tests for the mint database
* and logs the results using Gauger
*/
int
main (int argc, char ** argv)
{
- int ret;
+ int ret = 0;
struct PERF_TALER_MINTDB_Cmd init[] =
{
PERF_TALER_MINTDB_INIT_CMD_END ("init")
@@ -128,11 +162,11 @@ main (int argc, char ** argv)
PERF_TALER_MINTDB_INIT_CMD_END ("end"),
};
+ test_alocate ();
ret = PERF_TALER_MINTDB_run_benchmark ("perf-taler-mintdb",
"./test-mint-db-postgres.conf",
init,
benchmark);
-
if (GNUNET_SYSERR == ret)
return 1;
return 0;