--- /dev/null
+ o Minor bugfixes:
+ - Rename the bench_{aes,dmap} functions to test_*, so that tinytest can
+ pick them up when the tests aren't disabled. Bugfix on 0.2.2.4-alpha
+ which introduced tinytest.
+
/** Run AES performance benchmarks. */
static void
-bench_aes(void)
+test_bench_aes(void)
{
int len, i;
char *b1, *b2;
/** Run digestmap_t performance benchmarks. */
static void
-bench_dmap(void)
+test_bench_dmap(void)
{
smartlist_t *sl = smartlist_create();
smartlist_t *sl2 = smartlist_create();
{ #group "_" #name, legacy_test_helper, 0, &legacy_setup, \
test_ ## group ## _ ## name }
#define DISABLED(name) \
- { #name, legacy_test_helper, TT_SKIP, &legacy_setup, name }
+ { #name, legacy_test_helper, TT_SKIP, &legacy_setup, test_ ## name }
#define FORK(name) \
{ #name, legacy_test_helper, TT_FORK, &legacy_setup, test_ ## name }