test-str.c revision 93ae7fcd39c6982f7e338adfe71139942d9bbad1
/* Copyright (c) 2012-2014 Dovecot authors, see the included COPYING file */
#include "test-lib.h"
#include "str.h"
static void test_str_c(void)
{
unsigned int i, j;
test_begin("str_c()");
T_BEGIN {
} T_END;
for (i = 0; i < 32; i++) T_BEGIN {
for (j = 0; j < i; j++)
T_BEGIN {
} T_END;
} T_END;
test_end();
}
void test_str(void)
{
test_str_c();
}