Pool growth messages spam the test output, just dive in with a slightly
larger default to shut them up. Only affects these individual tests,
not any other users of the library.
Signed-off-by: Phil Carmody <phil@dovecot.fi>
net_set_nonblock(fd, TRUE);
- pool = pool_alloconly_create("client", 256);
+ pool = pool_alloconly_create("client", 512);
client = p_new(pool, struct client, 1);
client->pool = pool;
struct client_connection *conn;
pool_t pool;
- pool = pool_alloconly_create("client connection", 256);
+ pool = pool_alloconly_create("client connection", 512);
conn = p_new(pool, struct client_connection, 1);
conn->pool = pool;