summaryrefslogtreecommitdiff
path: root/src/exchangedb/test_perf_taler_exchangedb.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2016-05-02 01:30:13 +0200
committerChristian Grothoff <christian@grothoff.org>2016-05-02 01:30:13 +0200
commitd34c6401b415edeceb205782dbcccd8b38c8e1b7 (patch)
tree641f1f074c171f2b1bb93ffef9ae38891874692a /src/exchangedb/test_perf_taler_exchangedb.c
parentd1c83c5dda2f40578f18ce01ce0c7e1c6e311919 (diff)
downloadexchange-d34c6401b415edeceb205782dbcccd8b38c8e1b7.tar.gz
exchange-d34c6401b415edeceb205782dbcccd8b38c8e1b7.tar.bz2
exchange-d34c6401b415edeceb205782dbcccd8b38c8e1b7.zip
fixing #4470
Diffstat (limited to 'src/exchangedb/test_perf_taler_exchangedb.c')
-rw-r--r--src/exchangedb/test_perf_taler_exchangedb.c15
1 files changed, 10 insertions, 5 deletions
diff --git a/src/exchangedb/test_perf_taler_exchangedb.c b/src/exchangedb/test_perf_taler_exchangedb.c
index a4ec9591d..8f7aa55d5 100644
--- a/src/exchangedb/test_perf_taler_exchangedb.c
+++ b/src/exchangedb/test_perf_taler_exchangedb.c
@@ -35,6 +35,7 @@
#define NB_WITHDRAW_INIT 1
#define NB_WITHDRAW_SAVE 1
+
/**
* Allocate, copies and free all the data used in the interpreter
* Used to check for memory leaks
@@ -42,7 +43,8 @@
static void
test_allocate ()
{
- struct TALER_EXCHANGEDB_DenominationKeyIssueInformation *dki, *dki_copy;
+ struct TALER_EXCHANGEDB_DenominationKeyIssueInformation *dki;
+ struct TALER_EXCHANGEDB_DenominationKeyIssueInformation *dki_copy;
struct PERF_TALER_EXCHANGEDB_Reserve *reserve, *reserve_copy;
struct PERF_TALER_EXCHANGEDB_Coin *coin, *coin_copy;
struct TALER_EXCHANGEDB_Deposit *deposit, *deposit_copy;
@@ -68,6 +70,7 @@ test_allocate ()
PERF_TALER_EXCHANGEDB_deposit_free (deposit_copy);
}
+
/**
* Runs the performances tests for the exchange database
* and logs the results using Gauger
@@ -170,13 +173,15 @@ main (int argc, char ** argv)
// End of deposit initialization
PERF_TALER_EXCHANGEDB_INIT_CMD_END ("end"),
};
-
+
test_allocate ();
ret = PERF_TALER_EXCHANGEDB_run_benchmark ("test-perf-taler-exchangedb",
- "./test-exchange-db-postgres.conf",
- init,
- benchmark);
+ "./test-exchange-db-postgres.conf",
+ init,
+ benchmark);
if (GNUNET_SYSERR == ret)
return 1;
+ if (GNUNET_NO == ret)
+ return 77; /* testcase skipped */
return 0;
}