test-str.c revision c9c7624c38e96f431cfe4c8270820e9ecd19f04d
/* 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()");
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();
}