summaryrefslogtreecommitdiffstats
path: root/server/tests/ipa_timerules-tests.c
diff options
context:
space:
mode:
Diffstat (limited to 'server/tests/ipa_timerules-tests.c')
-rw-r--r--server/tests/ipa_timerules-tests.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/server/tests/ipa_timerules-tests.c b/server/tests/ipa_timerules-tests.c
index 12ce66509..0a7be90be 100644
--- a/server/tests/ipa_timerules-tests.c
+++ b/server/tests/ipa_timerules-tests.c
@@ -571,7 +571,8 @@ int main(int argc, const char *argv[])
timelib_suite = create_timelib_suite();
sr = srunner_create(timelib_suite);
- srunner_run_all(sr, CK_VERBOSE);
+ /* If CK_VERBOSITY is set, use that, otherwise it defaults to CK_NORMAL */
+ srunner_run_all(sr, CK_ENV);
failure_count = srunner_ntests_failed(sr);
srunner_free(sr);
return (failure_count==0 ? EXIT_SUCCESS : EXIT_FAILURE);