* unit-tests: small updates to tests

This commit is contained in:
Dirk-Jan C. Binnema
2010-09-26 15:23:17 +03:00
parent f4b0ad7a5d
commit 82176c8991
7 changed files with 21 additions and 32 deletions

View File

@ -105,7 +105,8 @@ test_mu_query_01 (void)
{ "html and contains", 1 },
{ "from:pepernoot", 0 },
{ "foo:pepernoot", 0 },
{ "fünkÿ", 1 }
{ "fünkÿ", 1 },
// { "funky", 1 }
};
xpath = fill_database ();
g_assert (xpath != NULL);
@ -225,7 +226,7 @@ main (int argc, char *argv[])
g_log_set_handler (NULL,
G_LOG_LEVEL_MASK | G_LOG_FLAG_FATAL| G_LOG_FLAG_RECURSION,
(GLogFunc)shutup, NULL);
(GLogFunc)black_hole, NULL);
return g_test_run ();
}