Set default log level to warn to shut the tests up

This commit is contained in:
Alex Young
2012-06-11 14:59:26 +01:00
parent 710d8254d4
commit e2d3161a4a
2 changed files with 2 additions and 2 deletions

View File

@@ -11,7 +11,7 @@
pthread_key_t cleanup_handler_key;
int log_level = 1;
int log_level = 2;
void error_init(void)
{

View File

@@ -226,7 +226,7 @@ Suite* serve_suite(void)
int main(void)
{
log_level = 0;
log_level = 2;
int number_failed;
Suite *s = serve_suite();
SRunner *sr = srunner_create(s);