]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
test-imap-match: Don't use "clean" alloconly mempool, there's no point.
authorTimo Sirainen <tss@iki.fi>
Fri, 3 Sep 2010 14:11:35 +0000 (15:11 +0100)
committerTimo Sirainen <tss@iki.fi>
Fri, 3 Sep 2010 14:11:35 +0000 (15:11 +0100)
src/lib-imap/test-imap-match.c

index 9d2af1f1e594a42dcc337176c18c6d8ba79ce71f..c598fc85b5d84de3d6362458b68a77c16ae780ee 100644 (file)
@@ -52,7 +52,7 @@ static void test_imap_match(void)
        unsigned int i;
        pool_t pool;
 
-       pool = pool_alloconly_create_clean("imap match", 1024);
+       pool = pool_alloconly_create("imap match", 1024);
 
        /* first try tests without inboxcasing */
        test_begin("imap match");
@@ -93,7 +93,7 @@ static void test_imap_match_globs_equal(void)
        struct imap_match_glob *glob;
        pool_t pool;
 
-       pool = pool_alloconly_create_clean("imap match globs equal", 1024);
+       pool = pool_alloconly_create("imap match globs equal", 1024);
        test_begin("imap match globs equal");
 
        glob = imap_match_init(pool, "1", FALSE, '/');