mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-25 06:56:14 +01:00
glib/gtestframework.c: g_test_init(): make warnings and criticals fatal for all test programs.
svn path=/trunk/; revision=5909
This commit is contained in:
parent
d3c69f19a2
commit
0324be2048
@ -369,6 +369,10 @@ g_test_init (int *argc,
|
||||
static char seedstr[4 + 4 * 8 + 1];
|
||||
va_list args;
|
||||
gpointer vararg1;
|
||||
/* make warnings and criticals fatal for all test programs */
|
||||
GLogLevelFlags fatal_mask = (GLogLevelFlags) g_log_set_always_fatal ((GLogLevelFlags) G_LOG_FATAL_MASK);
|
||||
fatal_mask = (GLogLevelFlags) (fatal_mask | G_LOG_LEVEL_WARNING | G_LOG_LEVEL_CRITICAL);
|
||||
/* check caller args */
|
||||
g_return_if_fail (argc != NULL);
|
||||
g_return_if_fail (argv != NULL);
|
||||
g_return_if_fail (g_test_config_vars == NULL);
|
||||
|
Loading…
Reference in New Issue
Block a user