check_acl correctly sets log_level

This commit is contained in:
Alex Young
2012-06-27 16:18:38 +01:00
parent ac3e6692a8
commit 04a10179a0

View File

@@ -212,7 +212,11 @@ Suite* acl_suite(void)
int main(void) int main(void)
{ {
#ifdef DEBUG
log_level = 0; log_level = 0;
#else
log_level = 2;
#endif
int number_failed; int number_failed;
Suite *s = acl_suite(); Suite *s = acl_suite();
SRunner *sr = srunner_create(s); SRunner *sr = srunner_create(s);