From 8bdea3cc7e7838b0d6c2eb33966724ed2138bf89 Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Wed, 26 Jul 2017 09:32:35 +0100 Subject: fix number of corestrings to test --- test/corestrings.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'test/corestrings.c') diff --git a/test/corestrings.c b/test/corestrings.c index e8f68c0a6..02640c953 100644 --- a/test/corestrings.c +++ b/test/corestrings.c @@ -35,6 +35,13 @@ #include "test/malloc_fig.h" +/** + * The number of corestrings. + * + * This is used to test all the out of memory paths in initialisation. + */ +#define CORESTRING_TEST_COUNT 435 + START_TEST(corestrings_test) { nserror ires; @@ -58,7 +65,7 @@ static TCase *corestrings_case_create(void) TCase *tc; tc = tcase_create("corestrings"); - tcase_add_loop_test(tc, corestrings_test, 0, 437); + tcase_add_loop_test(tc, corestrings_test, 0, CORESTRING_TEST_COUNT); return tc; } -- cgit v1.2.3