Skip to content
Snippets Groups Projects
Commit 362229f1 authored by David Goulet's avatar David Goulet :panda_face:
Browse files

lib/metrics: Fix wrong macro expansion


The "METRICS_PREFIX" was not expanded but rather used as a litteral. Fix that
by just removing the define and using "tor_" directly.

Reviewed-by: Alexander Hansen Færøy's avatarAlexander Færøy <ahf@torproject.org>
Signed-off-by: David Goulet's avatarDavid Goulet <dgoulet@torproject.org>
parent 5de66739
No related branches found
No related tags found
No related merge requests found
......@@ -11,14 +11,10 @@
#include "lib/cc/torint.h"
/** Prefix to every metrics exposed. This is insures that the metrics are
* always in the same namespace. */
#define METRICS_PREFIX tor_
/** Helper macro that must be used to construct the right namespaced metrics
* name. A name is a string so stringify the result. */
#define METRICS_STR(val) #val
#define METRICS_NAME(name) METRICS_STR(METRICS_PREFIX ## name)
#define METRICS_NAME(name) METRICS_STR(tor_ ## name)
/** Format output type. */
typedef enum {
......
......@@ -44,7 +44,7 @@ test_metrics(void *arg)
/* Confirm the entry value. */
const smartlist_t *entries = metrics_store_get_all(service->metrics.store,
"hs_intro_num_total");
"tor_hs_intro_num_total");
tt_assert(entries);
tt_int_op(smartlist_len(entries), OP_EQ, 1);
const metrics_store_entry_t *entry = smartlist_get(entries, 0);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment